913 lines
60 KiB
JavaScript
913 lines
60 KiB
JavaScript
"use strict";
|
|
/**
|
|
* Kubernetes
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: v1.22.2
|
|
*
|
|
*
|
|
* 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 });
|
|
exports.DiscoveryV1Api = exports.DiscoveryV1ApiApiKeys = void 0;
|
|
const tslib_1 = require("tslib");
|
|
const request_1 = tslib_1.__importDefault(require("request"));
|
|
const models_1 = require("../model/models");
|
|
const models_2 = require("../model/models");
|
|
const apis_1 = require("./apis");
|
|
let defaultBasePath = 'http://localhost';
|
|
// ===============================================
|
|
// This file is autogenerated - Please do not edit
|
|
// ===============================================
|
|
var DiscoveryV1ApiApiKeys;
|
|
(function (DiscoveryV1ApiApiKeys) {
|
|
DiscoveryV1ApiApiKeys[DiscoveryV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
|
|
})(DiscoveryV1ApiApiKeys = exports.DiscoveryV1ApiApiKeys || (exports.DiscoveryV1ApiApiKeys = {}));
|
|
class DiscoveryV1Api {
|
|
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'),
|
|
};
|
|
this.interceptors = [];
|
|
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;
|
|
}
|
|
set defaultHeaders(defaultHeaders) {
|
|
this._defaultHeaders = defaultHeaders;
|
|
}
|
|
get defaultHeaders() {
|
|
return this._defaultHeaders;
|
|
}
|
|
get basePath() {
|
|
return this._basePath;
|
|
}
|
|
setDefaultAuthentication(auth) {
|
|
this.authentications.default = auth;
|
|
}
|
|
setApiKey(key, value) {
|
|
this.authentications[DiscoveryV1ApiApiKeys[key]].apiKey = value;
|
|
}
|
|
addInterceptor(interceptor) {
|
|
this.interceptors.push(interceptor);
|
|
}
|
|
/**
|
|
* create an EndpointSlice
|
|
* @param namespace object name and auth scope, such as for teams and projects
|
|
* @param body
|
|
* @param pretty If \'true\', then the output is pretty printed.
|
|
* @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
* @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
|
|
*/
|
|
async createNamespacedEndpointSlice(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices'
|
|
.replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
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 createNamespacedEndpointSlice.');
|
|
}
|
|
// verify required parameter 'body' is not null or undefined
|
|
if (body === null || body === undefined) {
|
|
throw new Error('Required parameter body was null or undefined when calling createNamespacedEndpointSlice.');
|
|
}
|
|
if (pretty !== undefined) {
|
|
localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(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, "V1EndpointSlice")
|
|
};
|
|
let authenticationPromise = Promise.resolve();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(localVarRequestOptions, (error, response, body) => {
|
|
if (error) {
|
|
reject(error);
|
|
}
|
|
else {
|
|
body = models_1.ObjectSerializer.deserialize(body, "V1EndpointSlice");
|
|
if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
|
|
resolve({ response: response, body: body });
|
|
}
|
|
else {
|
|
reject(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* delete collection of EndpointSlice
|
|
* @param namespace object name and auth scope, such as for teams and projects
|
|
* @param pretty If \'true\', then the output is pretty printed.
|
|
* @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported 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 resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
|
|
* @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
|
|
* @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
|
|
* @param body
|
|
*/
|
|
async deleteCollectionNamespacedEndpointSlice(namespace, pretty, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, resourceVersionMatch, timeoutSeconds, body, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices'
|
|
.replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
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 deleteCollectionNamespacedEndpointSlice.');
|
|
}
|
|
if (pretty !== undefined) {
|
|
localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
|
|
}
|
|
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 (resourceVersionMatch !== undefined) {
|
|
localVarQueryParameters['resourceVersionMatch'] = models_1.ObjectSerializer.serialize(resourceVersionMatch, "string");
|
|
}
|
|
if (timeoutSeconds !== undefined) {
|
|
localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
|
|
}
|
|
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();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(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(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* delete an EndpointSlice
|
|
* @param name name of the EndpointSlice
|
|
* @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
|
|
*/
|
|
async deleteNamespacedEndpointSlice(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}'
|
|
.replace('{' + 'name' + '}', encodeURIComponent(String(name)))
|
|
.replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
let localVarFormParams = {};
|
|
// verify required parameter 'name' is not null or undefined
|
|
if (name === null || name === undefined) {
|
|
throw new Error('Required parameter name was null or undefined when calling deleteNamespacedEndpointSlice.');
|
|
}
|
|
// verify required parameter 'namespace' is not null or undefined
|
|
if (namespace === null || namespace === undefined) {
|
|
throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedEndpointSlice.');
|
|
}
|
|
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();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(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(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* get available resources
|
|
*/
|
|
async getAPIResources(options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/';
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
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();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(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(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* list or watch objects of kind EndpointSlice
|
|
* @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
|
|
* @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
|
|
* @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
|
|
* @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
|
|
* @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated 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 resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
|
|
* @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
|
|
* @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
|
|
* @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
|
|
*/
|
|
async listEndpointSliceForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, resourceVersionMatch, timeoutSeconds, watch, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/endpointslices';
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf', 'application/json;stream=watch', 'application/vnd.kubernetes.protobuf;stream=watch'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
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 (resourceVersionMatch !== undefined) {
|
|
localVarQueryParameters['resourceVersionMatch'] = models_1.ObjectSerializer.serialize(resourceVersionMatch, "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();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(localVarRequestOptions, (error, response, body) => {
|
|
if (error) {
|
|
reject(error);
|
|
}
|
|
else {
|
|
body = models_1.ObjectSerializer.deserialize(body, "V1EndpointSliceList");
|
|
if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
|
|
resolve({ response: response, body: body });
|
|
}
|
|
else {
|
|
reject(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* list or watch objects of kind EndpointSlice
|
|
* @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.
|
|
* @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
|
|
* @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
|
|
* @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
|
|
* @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated 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 resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
|
|
* @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
|
|
* @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
|
|
* @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
|
|
*/
|
|
async listNamespacedEndpointSlice(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, resourceVersionMatch, timeoutSeconds, watch, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices'
|
|
.replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf', 'application/json;stream=watch', 'application/vnd.kubernetes.protobuf;stream=watch'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
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 listNamespacedEndpointSlice.');
|
|
}
|
|
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 (resourceVersionMatch !== undefined) {
|
|
localVarQueryParameters['resourceVersionMatch'] = models_1.ObjectSerializer.serialize(resourceVersionMatch, "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();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(localVarRequestOptions, (error, response, body) => {
|
|
if (error) {
|
|
reject(error);
|
|
}
|
|
else {
|
|
body = models_1.ObjectSerializer.deserialize(body, "V1EndpointSliceList");
|
|
if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
|
|
resolve({ response: response, body: body });
|
|
}
|
|
else {
|
|
reject(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* partially update the specified EndpointSlice
|
|
* @param name name of the EndpointSlice
|
|
* @param namespace object name and auth scope, such as for teams and projects
|
|
* @param body
|
|
* @param pretty If \'true\', then the output is pretty printed.
|
|
* @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
* @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. 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.
|
|
*/
|
|
async patchNamespacedEndpointSlice(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}'
|
|
.replace('{' + 'name' + '}', encodeURIComponent(String(name)))
|
|
.replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
let localVarFormParams = {};
|
|
// verify required parameter 'name' is not null or undefined
|
|
if (name === null || name === undefined) {
|
|
throw new Error('Required parameter name was null or undefined when calling patchNamespacedEndpointSlice.');
|
|
}
|
|
// verify required parameter 'namespace' is not null or undefined
|
|
if (namespace === null || namespace === undefined) {
|
|
throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedEndpointSlice.');
|
|
}
|
|
// verify required parameter 'body' is not null or undefined
|
|
if (body === null || body === undefined) {
|
|
throw new Error('Required parameter body was null or undefined when calling patchNamespacedEndpointSlice.');
|
|
}
|
|
if (pretty !== undefined) {
|
|
localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(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();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(localVarRequestOptions, (error, response, body) => {
|
|
if (error) {
|
|
reject(error);
|
|
}
|
|
else {
|
|
body = models_1.ObjectSerializer.deserialize(body, "V1EndpointSlice");
|
|
if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
|
|
resolve({ response: response, body: body });
|
|
}
|
|
else {
|
|
reject(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* read the specified EndpointSlice
|
|
* @param name name of the EndpointSlice
|
|
* @param namespace object name and auth scope, such as for teams and projects
|
|
* @param pretty If \'true\', then the output is pretty printed.
|
|
*/
|
|
async readNamespacedEndpointSlice(name, namespace, pretty, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}'
|
|
.replace('{' + 'name' + '}', encodeURIComponent(String(name)))
|
|
.replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
let localVarFormParams = {};
|
|
// verify required parameter 'name' is not null or undefined
|
|
if (name === null || name === undefined) {
|
|
throw new Error('Required parameter name was null or undefined when calling readNamespacedEndpointSlice.');
|
|
}
|
|
// verify required parameter 'namespace' is not null or undefined
|
|
if (namespace === null || namespace === undefined) {
|
|
throw new Error('Required parameter namespace was null or undefined when calling readNamespacedEndpointSlice.');
|
|
}
|
|
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();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(localVarRequestOptions, (error, response, body) => {
|
|
if (error) {
|
|
reject(error);
|
|
}
|
|
else {
|
|
body = models_1.ObjectSerializer.deserialize(body, "V1EndpointSlice");
|
|
if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
|
|
resolve({ response: response, body: body });
|
|
}
|
|
else {
|
|
reject(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
/**
|
|
* replace the specified EndpointSlice
|
|
* @param name name of the EndpointSlice
|
|
* @param namespace object name and auth scope, such as for teams and projects
|
|
* @param body
|
|
* @param pretty If \'true\', then the output is pretty printed.
|
|
* @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
|
|
* @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
|
|
*/
|
|
async replaceNamespacedEndpointSlice(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
|
|
const localVarPath = this.basePath + '/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}'
|
|
.replace('{' + 'name' + '}', encodeURIComponent(String(name)))
|
|
.replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
|
|
let localVarQueryParameters = {};
|
|
let localVarHeaderParams = Object.assign({}, this._defaultHeaders);
|
|
const produces = ['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'];
|
|
// give precedence to 'application/json'
|
|
if (produces.indexOf('application/json') >= 0) {
|
|
localVarHeaderParams.Accept = 'application/json';
|
|
}
|
|
else {
|
|
localVarHeaderParams.Accept = produces.join(',');
|
|
}
|
|
let localVarFormParams = {};
|
|
// verify required parameter 'name' is not null or undefined
|
|
if (name === null || name === undefined) {
|
|
throw new Error('Required parameter name was null or undefined when calling replaceNamespacedEndpointSlice.');
|
|
}
|
|
// verify required parameter 'namespace' is not null or undefined
|
|
if (namespace === null || namespace === undefined) {
|
|
throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedEndpointSlice.');
|
|
}
|
|
// verify required parameter 'body' is not null or undefined
|
|
if (body === null || body === undefined) {
|
|
throw new Error('Required parameter body was null or undefined when calling replaceNamespacedEndpointSlice.');
|
|
}
|
|
if (pretty !== undefined) {
|
|
localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(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, "V1EndpointSlice")
|
|
};
|
|
let authenticationPromise = Promise.resolve();
|
|
if (this.authentications.BearerToken.apiKey) {
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
|
|
}
|
|
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
let interceptorPromise = authenticationPromise;
|
|
for (const interceptor of this.interceptors) {
|
|
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
}
|
|
return interceptorPromise.then(() => {
|
|
if (Object.keys(localVarFormParams).length) {
|
|
if (localVarUseFormData) {
|
|
localVarRequestOptions.formData = localVarFormParams;
|
|
}
|
|
else {
|
|
localVarRequestOptions.form = localVarFormParams;
|
|
}
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
request_1.default(localVarRequestOptions, (error, response, body) => {
|
|
if (error) {
|
|
reject(error);
|
|
}
|
|
else {
|
|
body = models_1.ObjectSerializer.deserialize(body, "V1EndpointSlice");
|
|
if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
|
|
resolve({ response: response, body: body });
|
|
}
|
|
else {
|
|
reject(new apis_1.HttpError(response, body, response.statusCode));
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}
|
|
}
|
|
exports.DiscoveryV1Api = DiscoveryV1Api;
|
|
//# sourceMappingURL=discoveryV1Api.js.map
|