@@ -9521,163 +9521,6 @@ export interface WatchDiscoveryV1NamespacedEndpointSliceRequest {
95219521}
95229522export interface GetEventsAPIGroupRequest { }
95239523export interface GetEventsV1APIResourcesRequest { }
9524- export interface ListEventsV1EventForAllNamespacesRequest {
9525- query: {
9526- allowWatchBookmarks?: boolean;
9527- continue?: string;
9528- fieldSelector?: string;
9529- labelSelector?: string;
9530- limit?: number;
9531- pretty?: string;
9532- resourceVersion?: string;
9533- resourceVersionMatch?: string;
9534- timeoutSeconds?: number;
9535- watch?: boolean;
9536- };
9537- }
9538- export interface ListEventsV1NamespacedEventRequest {
9539- query: {
9540- pretty?: string;
9541- allowWatchBookmarks?: boolean;
9542- continue?: string;
9543- fieldSelector?: string;
9544- labelSelector?: string;
9545- limit?: number;
9546- resourceVersion?: string;
9547- resourceVersionMatch?: string;
9548- timeoutSeconds?: number;
9549- watch?: boolean;
9550- };
9551- path: {
9552- namespace: string;
9553- };
9554- }
9555- export interface CreateEventsV1NamespacedEventRequest {
9556- query: {
9557- pretty?: string;
9558- dryRun?: string;
9559- fieldManager?: string;
9560- };
9561- path: {
9562- namespace: string;
9563- };
9564- body: Event;
9565- }
9566- export interface DeleteEventsV1CollectionNamespacedEventRequest {
9567- query: {
9568- pretty?: string;
9569- continue?: string;
9570- dryRun?: string;
9571- fieldSelector?: string;
9572- gracePeriodSeconds?: number;
9573- labelSelector?: string;
9574- limit?: number;
9575- orphanDependents?: boolean;
9576- propagationPolicy?: string;
9577- resourceVersion?: string;
9578- resourceVersionMatch?: string;
9579- timeoutSeconds?: number;
9580- };
9581- path: {
9582- namespace: string;
9583- };
9584- }
9585- export interface ReadEventsV1NamespacedEventRequest {
9586- query: {
9587- pretty?: string;
9588- };
9589- path: {
9590- name: string;
9591- namespace: string;
9592- };
9593- }
9594- export interface ReplaceEventsV1NamespacedEventRequest {
9595- query: {
9596- pretty?: string;
9597- dryRun?: string;
9598- fieldManager?: string;
9599- };
9600- path: {
9601- name: string;
9602- namespace: string;
9603- };
9604- body: Event;
9605- }
9606- export interface DeleteEventsV1NamespacedEventRequest {
9607- query: {
9608- pretty?: string;
9609- dryRun?: string;
9610- gracePeriodSeconds?: number;
9611- orphanDependents?: boolean;
9612- propagationPolicy?: string;
9613- };
9614- path: {
9615- name: string;
9616- namespace: string;
9617- };
9618- }
9619- export interface PatchEventsV1NamespacedEventRequest {
9620- query: {
9621- pretty?: string;
9622- dryRun?: string;
9623- fieldManager?: string;
9624- force?: boolean;
9625- };
9626- path: {
9627- name: string;
9628- namespace: string;
9629- };
9630- body: Patch;
9631- }
9632- export interface WatchEventsV1EventListForAllNamespacesRequest {
9633- query: {
9634- allowWatchBookmarks?: boolean;
9635- continue?: string;
9636- fieldSelector?: string;
9637- labelSelector?: string;
9638- limit?: number;
9639- pretty?: string;
9640- resourceVersion?: string;
9641- resourceVersionMatch?: string;
9642- timeoutSeconds?: number;
9643- watch?: boolean;
9644- };
9645- }
9646- export interface WatchEventsV1NamespacedEventListRequest {
9647- query: {
9648- allowWatchBookmarks?: boolean;
9649- continue?: string;
9650- fieldSelector?: string;
9651- labelSelector?: string;
9652- limit?: number;
9653- pretty?: string;
9654- resourceVersion?: string;
9655- resourceVersionMatch?: string;
9656- timeoutSeconds?: number;
9657- watch?: boolean;
9658- };
9659- path: {
9660- namespace: string;
9661- };
9662- }
9663- export interface WatchEventsV1NamespacedEventRequest {
9664- query: {
9665- allowWatchBookmarks?: boolean;
9666- continue?: string;
9667- fieldSelector?: string;
9668- labelSelector?: string;
9669- limit?: number;
9670- pretty?: string;
9671- resourceVersion?: string;
9672- resourceVersionMatch?: string;
9673- timeoutSeconds?: number;
9674- watch?: boolean;
9675- };
9676- path: {
9677- name: string;
9678- namespace: string;
9679- };
9680- }
96819524export interface GetFlowcontrolApiserverAPIGroupRequest { }
96829525export interface GetNetworkingAPIGroupRequest { }
96839526export interface GetNetworkingV1APIResourcesRequest { }
@@ -13495,50 +13338,6 @@ export class KubernetesClient extends APIClient {
1349513338 const path = `/apis/events.k8s.io/v1/` ;
1349613339 return await this . get < APIResourceList > ( path , null , null , opts ) ;
1349713340 }
13498- async listEventsV1EventForAllNamespaces(params: ListEventsV1EventForAllNamespacesRequest, opts?: APIClientRequestOpts): Promise<EventList> {
13499- const path = `/apis/events.k8s.io/v1/events`;
13500- return await this.get<EventList>(path, null, null, opts);
13501- }
13502- async listEventsV1NamespacedEvent(params: ListEventsV1NamespacedEventRequest, opts?: APIClientRequestOpts): Promise<EventList> {
13503- const path = `/apis/events.k8s.io/v1/namespaces/${params.path.namespace}/events`;
13504- return await this.get<EventList>(path, params.query, null, opts);
13505- }
13506- async createEventsV1NamespacedEvent(params: CreateEventsV1NamespacedEventRequest, opts?: APIClientRequestOpts): Promise<Event> {
13507- const path = `/apis/events.k8s.io/v1/namespaces/${params.path.namespace}/events`;
13508- return await this.post<Event>(path, params.query, params.body, opts);
13509- }
13510- async deleteEventsV1CollectionNamespacedEvent(params: DeleteEventsV1CollectionNamespacedEventRequest, opts?: APIClientRequestOpts): Promise<Status> {
13511- const path = `/apis/events.k8s.io/v1/namespaces/${params.path.namespace}/events`;
13512- return await this.delete<Status>(path, params.query, null, opts);
13513- }
13514- async readEventsV1NamespacedEvent(params: ReadEventsV1NamespacedEventRequest, opts?: APIClientRequestOpts): Promise<Event> {
13515- const path = `/apis/events.k8s.io/v1/namespaces/${params.path.namespace}/events/${params.path.name}`;
13516- return await this.get<Event>(path, null, null, opts);
13517- }
13518- async replaceEventsV1NamespacedEvent(params: ReplaceEventsV1NamespacedEventRequest, opts?: APIClientRequestOpts): Promise<Event> {
13519- const path = `/apis/events.k8s.io/v1/namespaces/${params.path.namespace}/events/${params.path.name}`;
13520- return await this.put<Event>(path, params.query, params.body, opts);
13521- }
13522- async deleteEventsV1NamespacedEvent(params: DeleteEventsV1NamespacedEventRequest, opts?: APIClientRequestOpts): Promise<Status> {
13523- const path = `/apis/events.k8s.io/v1/namespaces/${params.path.namespace}/events/${params.path.name}`;
13524- return await this.delete<Status>(path, params.query, null, opts);
13525- }
13526- async patchEventsV1NamespacedEvent(params: PatchEventsV1NamespacedEventRequest, opts?: APIClientRequestOpts): Promise<Event> {
13527- const path = `/apis/events.k8s.io/v1/namespaces/${params.path.namespace}/events/${params.path.name}`;
13528- return await this.patch<Event>(path, params.query, params.body, opts);
13529- }
13530- async watchEventsV1EventListForAllNamespaces(params: WatchEventsV1EventListForAllNamespacesRequest, opts?: APIClientRequestOpts): Promise<WatchEvent> {
13531- const path = `/apis/events.k8s.io/v1/watch/events`;
13532- return await this.get<WatchEvent>(path, null, null, opts);
13533- }
13534- async watchEventsV1NamespacedEventList(params: WatchEventsV1NamespacedEventListRequest, opts?: APIClientRequestOpts): Promise<WatchEvent> {
13535- const path = `/apis/events.k8s.io/v1/watch/namespaces/${params.path.namespace}/events`;
13536- return await this.get<WatchEvent>(path, null, null, opts);
13537- }
13538- async watchEventsV1NamespacedEvent(params: WatchEventsV1NamespacedEventRequest, opts?: APIClientRequestOpts): Promise<WatchEvent> {
13539- const path = `/apis/events.k8s.io/v1/watch/namespaces/${params.path.namespace}/events/${params.path.name}`;
13540- return await this.get<WatchEvent>(path, null, null, opts);
13541- }
1354213341 async getFlowcontrolApiserverAPIGroup ( params : GetFlowcontrolApiserverAPIGroupRequest , opts ?: APIClientRequestOpts ) : Promise < APIGroup > {
1354313342 const path = `/apis/flowcontrol.apiserver.k8s.io/` ;
1354413343 return await this . get < APIGroup > ( path , null , null , opts ) ;
0 commit comments