@kubernetes/client-node
Version:
NodeJS client for kubernetes
24 lines (23 loc) • 956 B
TypeScript
import { BaseAPIRequestFactory } from './baseapi.js';
import { Configuration } from '../configuration.js';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http.js';
import { V1APIGroup } from '../models/V1APIGroup.js';
/**
* no description
*/
export declare class FlowcontrolApiserverApiRequestFactory extends BaseAPIRequestFactory {
/**
* get information of a group
*/
getAPIGroup(_options?: Configuration): Promise<RequestContext>;
}
export declare class FlowcontrolApiserverApiResponseProcessor {
/**
* Unwraps the actual response sent by the server from the response context and deserializes the response content
* to the expected objects
*
* @params response Response returned by the server for a request to getAPIGroup
* @throws ApiException if the response code was not in [200, 299]
*/
getAPIGroupWithHttpInfo(response: ResponseContext): Promise<HttpInfo<V1APIGroup>>;
}