70 lines
2.9 KiB
C
70 lines
2.9 KiB
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "../include/apiClient.h"
|
|
#include "../include/list.h"
|
|
#include "../external/cJSON.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
#include "../model/object.h"
|
|
#include "../model/v1_api_resource_list.h"
|
|
#include "../model/v1_delete_options.h"
|
|
#include "../model/v1_endpoint_slice.h"
|
|
#include "../model/v1_endpoint_slice_list.h"
|
|
#include "../model/v1_status.h"
|
|
|
|
|
|
// create an EndpointSlice
|
|
//
|
|
v1_endpoint_slice_t*
|
|
DiscoveryV1API_createNamespacedEndpointSlice(apiClient_t *apiClient, char *_namespace, v1_endpoint_slice_t *body, char *pretty, char *dryRun, char *fieldManager, char *fieldValidation);
|
|
|
|
|
|
// delete collection of EndpointSlice
|
|
//
|
|
v1_status_t*
|
|
DiscoveryV1API_deleteCollectionNamespacedEndpointSlice(apiClient_t *apiClient, char *_namespace, char *pretty, char *_continue, char *dryRun, char *fieldSelector, int *gracePeriodSeconds, char *labelSelector, int *limit, int *orphanDependents, char *propagationPolicy, char *resourceVersion, char *resourceVersionMatch, int *sendInitialEvents, int *timeoutSeconds, v1_delete_options_t *body);
|
|
|
|
|
|
// delete an EndpointSlice
|
|
//
|
|
v1_status_t*
|
|
DiscoveryV1API_deleteNamespacedEndpointSlice(apiClient_t *apiClient, char *name, char *_namespace, char *pretty, char *dryRun, int *gracePeriodSeconds, int *orphanDependents, char *propagationPolicy, v1_delete_options_t *body);
|
|
|
|
|
|
// get available resources
|
|
//
|
|
v1_api_resource_list_t*
|
|
DiscoveryV1API_getAPIResources_17(apiClient_t *apiClient);
|
|
|
|
|
|
// list or watch objects of kind EndpointSlice
|
|
//
|
|
v1_endpoint_slice_list_t*
|
|
DiscoveryV1API_listEndpointSliceForAllNamespaces(apiClient_t *apiClient, int *allowWatchBookmarks, char *_continue, char *fieldSelector, char *labelSelector, int *limit, char *pretty, char *resourceVersion, char *resourceVersionMatch, int *sendInitialEvents, int *timeoutSeconds, int *watch);
|
|
|
|
|
|
// list or watch objects of kind EndpointSlice
|
|
//
|
|
v1_endpoint_slice_list_t*
|
|
DiscoveryV1API_listNamespacedEndpointSlice(apiClient_t *apiClient, char *_namespace, char *pretty, int *allowWatchBookmarks, char *_continue, char *fieldSelector, char *labelSelector, int *limit, char *resourceVersion, char *resourceVersionMatch, int *sendInitialEvents, int *timeoutSeconds, int *watch);
|
|
|
|
|
|
// partially update the specified EndpointSlice
|
|
//
|
|
v1_endpoint_slice_t*
|
|
DiscoveryV1API_patchNamespacedEndpointSlice(apiClient_t *apiClient, char *name, char *_namespace, object_t *body, char *pretty, char *dryRun, char *fieldManager, char *fieldValidation, int *force);
|
|
|
|
|
|
// read the specified EndpointSlice
|
|
//
|
|
v1_endpoint_slice_t*
|
|
DiscoveryV1API_readNamespacedEndpointSlice(apiClient_t *apiClient, char *name, char *_namespace, char *pretty);
|
|
|
|
|
|
// replace the specified EndpointSlice
|
|
//
|
|
v1_endpoint_slice_t*
|
|
DiscoveryV1API_replaceNamespacedEndpointSlice(apiClient_t *apiClient, char *name, char *_namespace, v1_endpoint_slice_t *body, char *pretty, char *dryRun, char *fieldManager, char *fieldValidation);
|
|
|
|
|