Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
4a983766a0
commit
52d71d28bd
49
node_modules/@kubernetes/client-node/dist/gen/api/apiextensionsApi.d.ts
generated
vendored
Normal file
49
node_modules/@kubernetes/client-node/dist/gen/api/apiextensionsApi.d.ts
generated
vendored
Normal file
@ -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.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.
|
||||
*/
|
||||
/// <reference types="node" />
|
||||
import http from 'http';
|
||||
import { V1APIGroup } from '../model/v1APIGroup';
|
||||
import { Authentication, Interceptor } 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;
|
||||
};
|
||||
protected interceptors: Interceptor[];
|
||||
constructor(basePath?: string);
|
||||
set useQuerystring(value: boolean);
|
||||
set basePath(basePath: string);
|
||||
set defaultHeaders(defaultHeaders: any);
|
||||
get defaultHeaders(): any;
|
||||
get basePath(): string;
|
||||
setDefaultAuthentication(auth: Authentication): void;
|
||||
setApiKey(key: ApiextensionsApiApiKeys, value: string): void;
|
||||
addInterceptor(interceptor: Interceptor): void;
|
||||
/**
|
||||
* get information of a group
|
||||
*/
|
||||
getAPIGroup(options?: {
|
||||
headers: {
|
||||
[name: string]: string;
|
||||
};
|
||||
}): Promise<{
|
||||
response: http.IncomingMessage;
|
||||
body: V1APIGroup;
|
||||
}>;
|
||||
}
|
Reference in New Issue
Block a user