Files
c/kubernetes
2021-09-07 03:44:24 -03:00
..
2021-09-05 12:12:19 -03:00
2021-09-05 12:12:19 -03:00
2021-09-06 18:18:47 -03:00
2021-09-05 12:12:19 -03:00
2021-09-05 12:12:19 -03:00
2021-09-06 18:18:47 -03:00
2021-09-05 12:12:19 -03:00
2021-09-06 18:18:47 -03:00
2020-03-18 17:24:33 +08:00
2021-09-06 18:18:47 -03:00
2021-09-06 18:18:47 -03:00
2020-03-18 17:24:33 +08:00
2021-09-06 18:18:47 -03:00
2021-08-31 00:34:32 -03:00
2021-09-05 12:12:19 -03:00
2020-03-18 17:24:33 +08:00
2020-03-18 17:24:33 +08:00

C API client for kubernetes

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI spec from a remote server, you can easily generate an API client.

  • API version: v1.17.4
  • Package version:
  • Build package: org.openapitools.codegen.languages.CLibcurlClientCodegen

Installation

You'll need the curl 7.58.0 package in order to build the API. To have code formatted nicely, you also need to have uncrustify version 0.67 or later.

Prerequisites

Install the curl 7.58.0 package with the following command on Linux.

sudo apt remove curl
wget http://curl.haxx.se/download/curl-7.58.0.tar.gz
tar -xvf curl-7.58.0.tar.gz
cd curl-7.58.0/
./configure
make
sudo make install

Install the uncrustify 0.67 package with the following command on Linux.

git clone https://github.com/uncrustify/uncrustify.git
cd uncrustify
mkdir build
cd build
cmake ..
make
sudo make install

Compile the sample:

This will compile the generated code and create a library in the build folder which has to be linked to the codes where API will be used.

mkdir build
cd build
// To install library to specific location, use following commands
cmake -DCMAKE_INSTALL_PREFIX=/pathtolocation ..
// for normal install use following command
cmake ..
make
sudo make install

How to use compiled library

Considering the test/source code which uses the API is written in main.c(respective api include is written and all objects necessary are defined and created)

To compile main.c(considering the file is present in build folder) use following command -L - location of the library(not required if cmake with normal installation is performed) -l library name

gcc main.c -L. -lkubernetes -o main

Once compiled, you can run it with ./main

Note: You don't need to specify includes for models and include folder separately as they are path linked. You just have to import the api.h file in your code, the include linking will work.

Documentation for API Endpoints

All URIs are relative to http://localhost

Category Method HTTP request Description
AdmissionregistrationAPI AdmissionregistrationAPI_getAPIGroup GET /apis/admissionregistration.k8s.io/
AdmissionregistrationV1API AdmissionregistrationV1API_createMutatingWebhookConfiguration POST /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
AdmissionregistrationV1API AdmissionregistrationV1API_createValidatingWebhookConfiguration POST /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations
AdmissionregistrationV1API AdmissionregistrationV1API_deleteCollectionMutatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
AdmissionregistrationV1API AdmissionregistrationV1API_deleteCollectionValidatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations
AdmissionregistrationV1API AdmissionregistrationV1API_deleteMutatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1API AdmissionregistrationV1API_deleteValidatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1API AdmissionregistrationV1API_getAPIResources GET /apis/admissionregistration.k8s.io/v1/
AdmissionregistrationV1API AdmissionregistrationV1API_listMutatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
AdmissionregistrationV1API AdmissionregistrationV1API_listValidatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations
AdmissionregistrationV1API AdmissionregistrationV1API_patchMutatingWebhookConfiguration PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1API AdmissionregistrationV1API_patchValidatingWebhookConfiguration PATCH /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1API AdmissionregistrationV1API_readMutatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1API AdmissionregistrationV1API_readValidatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1API AdmissionregistrationV1API_replaceMutatingWebhookConfiguration PUT /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1API AdmissionregistrationV1API_replaceValidatingWebhookConfiguration PUT /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_createMutatingWebhookConfiguration POST /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_createValidatingWebhookConfiguration POST /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_deleteCollectionMutatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_deleteCollectionValidatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_deleteMutatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_deleteValidatingWebhookConfiguration DELETE /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_getAPIResources GET /apis/admissionregistration.k8s.io/v1beta1/
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_listMutatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_listValidatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_patchMutatingWebhookConfiguration PATCH /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_patchValidatingWebhookConfiguration PATCH /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_readMutatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_readValidatingWebhookConfiguration GET /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_replaceMutatingWebhookConfiguration PUT /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1beta1API AdmissionregistrationV1beta1API_replaceValidatingWebhookConfiguration PUT /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}
ApiextensionsAPI ApiextensionsAPI_getAPIGroup GET /apis/apiextensions.k8s.io/
ApiextensionsV1API ApiextensionsV1API_createCustomResourceDefinition POST /apis/apiextensions.k8s.io/v1/customresourcedefinitions
ApiextensionsV1API ApiextensionsV1API_deleteCollectionCustomResourceDefinition DELETE /apis/apiextensions.k8s.io/v1/customresourcedefinitions
ApiextensionsV1API ApiextensionsV1API_deleteCustomResourceDefinition DELETE /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1API ApiextensionsV1API_getAPIResources GET /apis/apiextensions.k8s.io/v1/
ApiextensionsV1API ApiextensionsV1API_listCustomResourceDefinition GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions
ApiextensionsV1API ApiextensionsV1API_patchCustomResourceDefinition PATCH /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1API ApiextensionsV1API_patchCustomResourceDefinitionStatus PATCH /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
ApiextensionsV1API ApiextensionsV1API_readCustomResourceDefinition GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1API ApiextensionsV1API_readCustomResourceDefinitionStatus GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
ApiextensionsV1API ApiextensionsV1API_replaceCustomResourceDefinition PUT /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1API ApiextensionsV1API_replaceCustomResourceDefinitionStatus PUT /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
ApiextensionsV1beta1API ApiextensionsV1beta1API_createCustomResourceDefinition POST /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions
ApiextensionsV1beta1API ApiextensionsV1beta1API_deleteCollectionCustomResourceDefinition DELETE /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions
ApiextensionsV1beta1API ApiextensionsV1beta1API_deleteCustomResourceDefinition DELETE /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}
ApiextensionsV1beta1API ApiextensionsV1beta1API_getAPIResources GET /apis/apiextensions.k8s.io/v1beta1/
ApiextensionsV1beta1API ApiextensionsV1beta1API_listCustomResourceDefinition GET /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions
ApiextensionsV1beta1API ApiextensionsV1beta1API_patchCustomResourceDefinition PATCH /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}
ApiextensionsV1beta1API ApiextensionsV1beta1API_patchCustomResourceDefinitionStatus PATCH /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status
ApiextensionsV1beta1API ApiextensionsV1beta1API_readCustomResourceDefinition GET /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}
ApiextensionsV1beta1API ApiextensionsV1beta1API_readCustomResourceDefinitionStatus GET /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status
ApiextensionsV1beta1API ApiextensionsV1beta1API_replaceCustomResourceDefinition PUT /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}
ApiextensionsV1beta1API ApiextensionsV1beta1API_replaceCustomResourceDefinitionStatus PUT /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status
ApiregistrationAPI ApiregistrationAPI_getAPIGroup GET /apis/apiregistration.k8s.io/
ApiregistrationV1API ApiregistrationV1API_createAPIService POST /apis/apiregistration.k8s.io/v1/apiservices
ApiregistrationV1API ApiregistrationV1API_deleteAPIService DELETE /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1API ApiregistrationV1API_deleteCollectionAPIService DELETE /apis/apiregistration.k8s.io/v1/apiservices
ApiregistrationV1API ApiregistrationV1API_getAPIResources GET /apis/apiregistration.k8s.io/v1/
ApiregistrationV1API ApiregistrationV1API_listAPIService GET /apis/apiregistration.k8s.io/v1/apiservices
ApiregistrationV1API ApiregistrationV1API_patchAPIService PATCH /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1API ApiregistrationV1API_patchAPIServiceStatus PATCH /apis/apiregistration.k8s.io/v1/apiservices/{name}/status
ApiregistrationV1API ApiregistrationV1API_readAPIService GET /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1API ApiregistrationV1API_readAPIServiceStatus GET /apis/apiregistration.k8s.io/v1/apiservices/{name}/status
ApiregistrationV1API ApiregistrationV1API_replaceAPIService PUT /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1API ApiregistrationV1API_replaceAPIServiceStatus PUT /apis/apiregistration.k8s.io/v1/apiservices/{name}/status
ApiregistrationV1beta1API ApiregistrationV1beta1API_createAPIService POST /apis/apiregistration.k8s.io/v1beta1/apiservices
ApiregistrationV1beta1API ApiregistrationV1beta1API_deleteAPIService DELETE /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}
ApiregistrationV1beta1API ApiregistrationV1beta1API_deleteCollectionAPIService DELETE /apis/apiregistration.k8s.io/v1beta1/apiservices
ApiregistrationV1beta1API ApiregistrationV1beta1API_getAPIResources GET /apis/apiregistration.k8s.io/v1beta1/
ApiregistrationV1beta1API ApiregistrationV1beta1API_listAPIService GET /apis/apiregistration.k8s.io/v1beta1/apiservices
ApiregistrationV1beta1API ApiregistrationV1beta1API_patchAPIService PATCH /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}
ApiregistrationV1beta1API ApiregistrationV1beta1API_patchAPIServiceStatus PATCH /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status
ApiregistrationV1beta1API ApiregistrationV1beta1API_readAPIService GET /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}
ApiregistrationV1beta1API ApiregistrationV1beta1API_readAPIServiceStatus GET /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status
ApiregistrationV1beta1API ApiregistrationV1beta1API_replaceAPIService PUT /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}
ApiregistrationV1beta1API ApiregistrationV1beta1API_replaceAPIServiceStatus PUT /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status
ApisAPI ApisAPI_getAPIVersions GET /apis/
AppsAPI AppsAPI_getAPIGroup GET /apis/apps/
AppsV1API AppsV1API_createNamespacedControllerRevision POST /apis/apps/v1/namespaces/{namespace}/controllerrevisions
AppsV1API AppsV1API_createNamespacedDaemonSet POST /apis/apps/v1/namespaces/{namespace}/daemonsets
AppsV1API AppsV1API_createNamespacedDeployment POST /apis/apps/v1/namespaces/{namespace}/deployments
AppsV1API AppsV1API_createNamespacedReplicaSet POST /apis/apps/v1/namespaces/{namespace}/replicasets
AppsV1API AppsV1API_createNamespacedStatefulSet POST /apis/apps/v1/namespaces/{namespace}/statefulsets
AppsV1API AppsV1API_deleteCollectionNamespacedControllerRevision DELETE /apis/apps/v1/namespaces/{namespace}/controllerrevisions
AppsV1API AppsV1API_deleteCollectionNamespacedDaemonSet DELETE /apis/apps/v1/namespaces/{namespace}/daemonsets
AppsV1API AppsV1API_deleteCollectionNamespacedDeployment DELETE /apis/apps/v1/namespaces/{namespace}/deployments
AppsV1API AppsV1API_deleteCollectionNamespacedReplicaSet DELETE /apis/apps/v1/namespaces/{namespace}/replicasets
AppsV1API AppsV1API_deleteCollectionNamespacedStatefulSet DELETE /apis/apps/v1/namespaces/{namespace}/statefulsets
AppsV1API AppsV1API_deleteNamespacedControllerRevision DELETE /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1API AppsV1API_deleteNamespacedDaemonSet DELETE /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1API AppsV1API_deleteNamespacedDeployment DELETE /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1API AppsV1API_deleteNamespacedReplicaSet DELETE /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1API AppsV1API_deleteNamespacedStatefulSet DELETE /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1API AppsV1API_getAPIResources GET /apis/apps/v1/
AppsV1API AppsV1API_listControllerRevisionForAllNamespaces GET /apis/apps/v1/controllerrevisions
AppsV1API AppsV1API_listDaemonSetForAllNamespaces GET /apis/apps/v1/daemonsets
AppsV1API AppsV1API_listDeploymentForAllNamespaces GET /apis/apps/v1/deployments
AppsV1API AppsV1API_listNamespacedControllerRevision GET /apis/apps/v1/namespaces/{namespace}/controllerrevisions
AppsV1API AppsV1API_listNamespacedDaemonSet GET /apis/apps/v1/namespaces/{namespace}/daemonsets
AppsV1API AppsV1API_listNamespacedDeployment GET /apis/apps/v1/namespaces/{namespace}/deployments
AppsV1API AppsV1API_listNamespacedReplicaSet GET /apis/apps/v1/namespaces/{namespace}/replicasets
AppsV1API AppsV1API_listNamespacedStatefulSet GET /apis/apps/v1/namespaces/{namespace}/statefulsets
AppsV1API AppsV1API_listReplicaSetForAllNamespaces GET /apis/apps/v1/replicasets
AppsV1API AppsV1API_listStatefulSetForAllNamespaces GET /apis/apps/v1/statefulsets
AppsV1API AppsV1API_patchNamespacedControllerRevision PATCH /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1API AppsV1API_patchNamespacedDaemonSet PATCH /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1API AppsV1API_patchNamespacedDaemonSetStatus PATCH /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status
AppsV1API AppsV1API_patchNamespacedDeployment PATCH /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1API AppsV1API_patchNamespacedDeploymentScale PATCH /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale
AppsV1API AppsV1API_patchNamespacedDeploymentStatus PATCH /apis/apps/v1/namespaces/{namespace}/deployments/{name}/status
AppsV1API AppsV1API_patchNamespacedReplicaSet PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1API AppsV1API_patchNamespacedReplicaSetScale PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale
AppsV1API AppsV1API_patchNamespacedReplicaSetStatus PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
AppsV1API AppsV1API_patchNamespacedStatefulSet PATCH /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1API AppsV1API_patchNamespacedStatefulSetScale PATCH /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1API AppsV1API_patchNamespacedStatefulSetStatus PATCH /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1API AppsV1API_readNamespacedControllerRevision GET /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1API AppsV1API_readNamespacedDaemonSet GET /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1API AppsV1API_readNamespacedDaemonSetStatus GET /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status
AppsV1API AppsV1API_readNamespacedDeployment GET /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1API AppsV1API_readNamespacedDeploymentScale GET /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale
AppsV1API AppsV1API_readNamespacedDeploymentStatus GET /apis/apps/v1/namespaces/{namespace}/deployments/{name}/status
AppsV1API AppsV1API_readNamespacedReplicaSet GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1API AppsV1API_readNamespacedReplicaSetScale GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale
AppsV1API AppsV1API_readNamespacedReplicaSetStatus GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
AppsV1API AppsV1API_readNamespacedStatefulSet GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1API AppsV1API_readNamespacedStatefulSetScale GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1API AppsV1API_readNamespacedStatefulSetStatus GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1API AppsV1API_replaceNamespacedControllerRevision PUT /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1API AppsV1API_replaceNamespacedDaemonSet PUT /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1API AppsV1API_replaceNamespacedDaemonSetStatus PUT /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status
AppsV1API AppsV1API_replaceNamespacedDeployment PUT /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1API AppsV1API_replaceNamespacedDeploymentScale PUT /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale
AppsV1API AppsV1API_replaceNamespacedDeploymentStatus PUT /apis/apps/v1/namespaces/{namespace}/deployments/{name}/status
AppsV1API AppsV1API_replaceNamespacedReplicaSet PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1API AppsV1API_replaceNamespacedReplicaSetScale PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale
AppsV1API AppsV1API_replaceNamespacedReplicaSetStatus PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
AppsV1API AppsV1API_replaceNamespacedStatefulSet PUT /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1API AppsV1API_replaceNamespacedStatefulSetScale PUT /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1API AppsV1API_replaceNamespacedStatefulSetStatus PUT /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta1API AppsV1beta1API_createNamespacedControllerRevision POST /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions
AppsV1beta1API AppsV1beta1API_createNamespacedDeployment POST /apis/apps/v1beta1/namespaces/{namespace}/deployments
AppsV1beta1API AppsV1beta1API_createNamespacedDeploymentRollback POST /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
AppsV1beta1API AppsV1beta1API_createNamespacedStatefulSet POST /apis/apps/v1beta1/namespaces/{namespace}/statefulsets
AppsV1beta1API AppsV1beta1API_deleteCollectionNamespacedControllerRevision DELETE /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions
AppsV1beta1API AppsV1beta1API_deleteCollectionNamespacedDeployment DELETE /apis/apps/v1beta1/namespaces/{namespace}/deployments
AppsV1beta1API AppsV1beta1API_deleteCollectionNamespacedStatefulSet DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets
AppsV1beta1API AppsV1beta1API_deleteNamespacedControllerRevision DELETE /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta1API AppsV1beta1API_deleteNamespacedDeployment DELETE /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1API AppsV1beta1API_deleteNamespacedStatefulSet DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1API AppsV1beta1API_getAPIResources GET /apis/apps/v1beta1/
AppsV1beta1API AppsV1beta1API_listControllerRevisionForAllNamespaces GET /apis/apps/v1beta1/controllerrevisions
AppsV1beta1API AppsV1beta1API_listDeploymentForAllNamespaces GET /apis/apps/v1beta1/deployments
AppsV1beta1API AppsV1beta1API_listNamespacedControllerRevision GET /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions
AppsV1beta1API AppsV1beta1API_listNamespacedDeployment GET /apis/apps/v1beta1/namespaces/{namespace}/deployments
AppsV1beta1API AppsV1beta1API_listNamespacedStatefulSet GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets
AppsV1beta1API AppsV1beta1API_listStatefulSetForAllNamespaces GET /apis/apps/v1beta1/statefulsets
AppsV1beta1API AppsV1beta1API_patchNamespacedControllerRevision PATCH /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta1API AppsV1beta1API_patchNamespacedDeployment PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1API AppsV1beta1API_patchNamespacedDeploymentScale PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta1API AppsV1beta1API_patchNamespacedDeploymentStatus PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status
AppsV1beta1API AppsV1beta1API_patchNamespacedStatefulSet PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1API AppsV1beta1API_patchNamespacedStatefulSetScale PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1beta1API AppsV1beta1API_patchNamespacedStatefulSetStatus PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta1API AppsV1beta1API_readNamespacedControllerRevision GET /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta1API AppsV1beta1API_readNamespacedDeployment GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1API AppsV1beta1API_readNamespacedDeploymentScale GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta1API AppsV1beta1API_readNamespacedDeploymentStatus GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status
AppsV1beta1API AppsV1beta1API_readNamespacedStatefulSet GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1API AppsV1beta1API_readNamespacedStatefulSetScale GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1beta1API AppsV1beta1API_readNamespacedStatefulSetStatus GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta1API AppsV1beta1API_replaceNamespacedControllerRevision PUT /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta1API AppsV1beta1API_replaceNamespacedDeployment PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1API AppsV1beta1API_replaceNamespacedDeploymentScale PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta1API AppsV1beta1API_replaceNamespacedDeploymentStatus PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status
AppsV1beta1API AppsV1beta1API_replaceNamespacedStatefulSet PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1API AppsV1beta1API_replaceNamespacedStatefulSetScale PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1beta1API AppsV1beta1API_replaceNamespacedStatefulSetStatus PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta2API AppsV1beta2API_createNamespacedControllerRevision POST /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions
AppsV1beta2API AppsV1beta2API_createNamespacedDaemonSet POST /apis/apps/v1beta2/namespaces/{namespace}/daemonsets
AppsV1beta2API AppsV1beta2API_createNamespacedDeployment POST /apis/apps/v1beta2/namespaces/{namespace}/deployments
AppsV1beta2API AppsV1beta2API_createNamespacedReplicaSet POST /apis/apps/v1beta2/namespaces/{namespace}/replicasets
AppsV1beta2API AppsV1beta2API_createNamespacedStatefulSet POST /apis/apps/v1beta2/namespaces/{namespace}/statefulsets
AppsV1beta2API AppsV1beta2API_deleteCollectionNamespacedControllerRevision DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions
AppsV1beta2API AppsV1beta2API_deleteCollectionNamespacedDaemonSet DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets
AppsV1beta2API AppsV1beta2API_deleteCollectionNamespacedDeployment DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments
AppsV1beta2API AppsV1beta2API_deleteCollectionNamespacedReplicaSet DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets
AppsV1beta2API AppsV1beta2API_deleteCollectionNamespacedStatefulSet DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets
AppsV1beta2API AppsV1beta2API_deleteNamespacedControllerRevision DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta2API AppsV1beta2API_deleteNamespacedDaemonSet DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}
AppsV1beta2API AppsV1beta2API_deleteNamespacedDeployment DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}
AppsV1beta2API AppsV1beta2API_deleteNamespacedReplicaSet DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}
AppsV1beta2API AppsV1beta2API_deleteNamespacedStatefulSet DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}
AppsV1beta2API AppsV1beta2API_getAPIResources GET /apis/apps/v1beta2/
AppsV1beta2API AppsV1beta2API_listControllerRevisionForAllNamespaces GET /apis/apps/v1beta2/controllerrevisions
AppsV1beta2API AppsV1beta2API_listDaemonSetForAllNamespaces GET /apis/apps/v1beta2/daemonsets
AppsV1beta2API AppsV1beta2API_listDeploymentForAllNamespaces GET /apis/apps/v1beta2/deployments
AppsV1beta2API AppsV1beta2API_listNamespacedControllerRevision GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions
AppsV1beta2API AppsV1beta2API_listNamespacedDaemonSet GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets
AppsV1beta2API AppsV1beta2API_listNamespacedDeployment GET /apis/apps/v1beta2/namespaces/{namespace}/deployments
AppsV1beta2API AppsV1beta2API_listNamespacedReplicaSet GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets
AppsV1beta2API AppsV1beta2API_listNamespacedStatefulSet GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets
AppsV1beta2API AppsV1beta2API_listReplicaSetForAllNamespaces GET /apis/apps/v1beta2/replicasets
AppsV1beta2API AppsV1beta2API_listStatefulSetForAllNamespaces GET /apis/apps/v1beta2/statefulsets
AppsV1beta2API AppsV1beta2API_patchNamespacedControllerRevision PATCH /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta2API AppsV1beta2API_patchNamespacedDaemonSet PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}
AppsV1beta2API AppsV1beta2API_patchNamespacedDaemonSetStatus PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status
AppsV1beta2API AppsV1beta2API_patchNamespacedDeployment PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}
AppsV1beta2API AppsV1beta2API_patchNamespacedDeploymentScale PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta2API AppsV1beta2API_patchNamespacedDeploymentStatus PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status
AppsV1beta2API AppsV1beta2API_patchNamespacedReplicaSet PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}
AppsV1beta2API AppsV1beta2API_patchNamespacedReplicaSetScale PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale
AppsV1beta2API AppsV1beta2API_patchNamespacedReplicaSetStatus PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status
AppsV1beta2API AppsV1beta2API_patchNamespacedStatefulSet PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}
AppsV1beta2API AppsV1beta2API_patchNamespacedStatefulSetScale PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1beta2API AppsV1beta2API_patchNamespacedStatefulSetStatus PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta2API AppsV1beta2API_readNamespacedControllerRevision GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta2API AppsV1beta2API_readNamespacedDaemonSet GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}
AppsV1beta2API AppsV1beta2API_readNamespacedDaemonSetStatus GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status
AppsV1beta2API AppsV1beta2API_readNamespacedDeployment GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}
AppsV1beta2API AppsV1beta2API_readNamespacedDeploymentScale GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta2API AppsV1beta2API_readNamespacedDeploymentStatus GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status
AppsV1beta2API AppsV1beta2API_readNamespacedReplicaSet GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}
AppsV1beta2API AppsV1beta2API_readNamespacedReplicaSetScale GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale
AppsV1beta2API AppsV1beta2API_readNamespacedReplicaSetStatus GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status
AppsV1beta2API AppsV1beta2API_readNamespacedStatefulSet GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}
AppsV1beta2API AppsV1beta2API_readNamespacedStatefulSetScale GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1beta2API AppsV1beta2API_readNamespacedStatefulSetStatus GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta2API AppsV1beta2API_replaceNamespacedControllerRevision PUT /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}
AppsV1beta2API AppsV1beta2API_replaceNamespacedDaemonSet PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}
AppsV1beta2API AppsV1beta2API_replaceNamespacedDaemonSetStatus PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status
AppsV1beta2API AppsV1beta2API_replaceNamespacedDeployment PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}
AppsV1beta2API AppsV1beta2API_replaceNamespacedDeploymentScale PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta2API AppsV1beta2API_replaceNamespacedDeploymentStatus PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status
AppsV1beta2API AppsV1beta2API_replaceNamespacedReplicaSet PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}
AppsV1beta2API AppsV1beta2API_replaceNamespacedReplicaSetScale PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale
AppsV1beta2API AppsV1beta2API_replaceNamespacedReplicaSetStatus PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status
AppsV1beta2API AppsV1beta2API_replaceNamespacedStatefulSet PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}
AppsV1beta2API AppsV1beta2API_replaceNamespacedStatefulSetScale PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1beta2API AppsV1beta2API_replaceNamespacedStatefulSetStatus PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status
AuditregistrationAPI AuditregistrationAPI_getAPIGroup GET /apis/auditregistration.k8s.io/
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_createAuditSink POST /apis/auditregistration.k8s.io/v1alpha1/auditsinks
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_deleteAuditSink DELETE /apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_deleteCollectionAuditSink DELETE /apis/auditregistration.k8s.io/v1alpha1/auditsinks
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_getAPIResources GET /apis/auditregistration.k8s.io/v1alpha1/
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_listAuditSink GET /apis/auditregistration.k8s.io/v1alpha1/auditsinks
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_patchAuditSink PATCH /apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_readAuditSink GET /apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}
AuditregistrationV1alpha1API AuditregistrationV1alpha1API_replaceAuditSink PUT /apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}
AuthenticationAPI AuthenticationAPI_getAPIGroup GET /apis/authentication.k8s.io/
AuthenticationV1API AuthenticationV1API_createTokenReview POST /apis/authentication.k8s.io/v1/tokenreviews
AuthenticationV1API AuthenticationV1API_getAPIResources GET /apis/authentication.k8s.io/v1/
AuthenticationV1beta1API AuthenticationV1beta1API_createTokenReview POST /apis/authentication.k8s.io/v1beta1/tokenreviews
AuthenticationV1beta1API AuthenticationV1beta1API_getAPIResources GET /apis/authentication.k8s.io/v1beta1/
AuthorizationAPI AuthorizationAPI_getAPIGroup GET /apis/authorization.k8s.io/
AuthorizationV1API AuthorizationV1API_createNamespacedLocalSubjectAccessReview POST /apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews
AuthorizationV1API AuthorizationV1API_createSelfSubjectAccessReview POST /apis/authorization.k8s.io/v1/selfsubjectaccessreviews
AuthorizationV1API AuthorizationV1API_createSelfSubjectRulesReview POST /apis/authorization.k8s.io/v1/selfsubjectrulesreviews
AuthorizationV1API AuthorizationV1API_createSubjectAccessReview POST /apis/authorization.k8s.io/v1/subjectaccessreviews
AuthorizationV1API AuthorizationV1API_getAPIResources GET /apis/authorization.k8s.io/v1/
AuthorizationV1beta1API AuthorizationV1beta1API_createNamespacedLocalSubjectAccessReview POST /apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews
AuthorizationV1beta1API AuthorizationV1beta1API_createSelfSubjectAccessReview POST /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews
AuthorizationV1beta1API AuthorizationV1beta1API_createSelfSubjectRulesReview POST /apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews
AuthorizationV1beta1API AuthorizationV1beta1API_createSubjectAccessReview POST /apis/authorization.k8s.io/v1beta1/subjectaccessreviews
AuthorizationV1beta1API AuthorizationV1beta1API_getAPIResources GET /apis/authorization.k8s.io/v1beta1/
AutoscalingAPI AutoscalingAPI_getAPIGroup GET /apis/autoscaling/
AutoscalingV1API AutoscalingV1API_createNamespacedHorizontalPodAutoscaler POST /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV1API AutoscalingV1API_deleteCollectionNamespacedHorizontalPodAutoscaler DELETE /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV1API AutoscalingV1API_deleteNamespacedHorizontalPodAutoscaler DELETE /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1API AutoscalingV1API_getAPIResources GET /apis/autoscaling/v1/
AutoscalingV1API AutoscalingV1API_listHorizontalPodAutoscalerForAllNamespaces GET /apis/autoscaling/v1/horizontalpodautoscalers
AutoscalingV1API AutoscalingV1API_listNamespacedHorizontalPodAutoscaler GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV1API AutoscalingV1API_patchNamespacedHorizontalPodAutoscaler PATCH /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1API AutoscalingV1API_patchNamespacedHorizontalPodAutoscalerStatus PATCH /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV1API AutoscalingV1API_readNamespacedHorizontalPodAutoscaler GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1API AutoscalingV1API_readNamespacedHorizontalPodAutoscalerStatus GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV1API AutoscalingV1API_replaceNamespacedHorizontalPodAutoscaler PUT /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1API AutoscalingV1API_replaceNamespacedHorizontalPodAutoscalerStatus PUT /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta1API AutoscalingV2beta1API_createNamespacedHorizontalPodAutoscaler POST /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta1API AutoscalingV2beta1API_deleteCollectionNamespacedHorizontalPodAutoscaler DELETE /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta1API AutoscalingV2beta1API_deleteNamespacedHorizontalPodAutoscaler DELETE /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1API AutoscalingV2beta1API_getAPIResources GET /apis/autoscaling/v2beta1/
AutoscalingV2beta1API AutoscalingV2beta1API_listHorizontalPodAutoscalerForAllNamespaces GET /apis/autoscaling/v2beta1/horizontalpodautoscalers
AutoscalingV2beta1API AutoscalingV2beta1API_listNamespacedHorizontalPodAutoscaler GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta1API AutoscalingV2beta1API_patchNamespacedHorizontalPodAutoscaler PATCH /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1API AutoscalingV2beta1API_patchNamespacedHorizontalPodAutoscalerStatus PATCH /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta1API AutoscalingV2beta1API_readNamespacedHorizontalPodAutoscaler GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1API AutoscalingV2beta1API_readNamespacedHorizontalPodAutoscalerStatus GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta1API AutoscalingV2beta1API_replaceNamespacedHorizontalPodAutoscaler PUT /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1API AutoscalingV2beta1API_replaceNamespacedHorizontalPodAutoscalerStatus PUT /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta2API AutoscalingV2beta2API_createNamespacedHorizontalPodAutoscaler POST /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta2API AutoscalingV2beta2API_deleteCollectionNamespacedHorizontalPodAutoscaler DELETE /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta2API AutoscalingV2beta2API_deleteNamespacedHorizontalPodAutoscaler DELETE /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2API AutoscalingV2beta2API_getAPIResources GET /apis/autoscaling/v2beta2/
AutoscalingV2beta2API AutoscalingV2beta2API_listHorizontalPodAutoscalerForAllNamespaces GET /apis/autoscaling/v2beta2/horizontalpodautoscalers
AutoscalingV2beta2API AutoscalingV2beta2API_listNamespacedHorizontalPodAutoscaler GET /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta2API AutoscalingV2beta2API_patchNamespacedHorizontalPodAutoscaler PATCH /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2API AutoscalingV2beta2API_patchNamespacedHorizontalPodAutoscalerStatus PATCH /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta2API AutoscalingV2beta2API_readNamespacedHorizontalPodAutoscaler GET /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2API AutoscalingV2beta2API_readNamespacedHorizontalPodAutoscalerStatus GET /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta2API AutoscalingV2beta2API_replaceNamespacedHorizontalPodAutoscaler PUT /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2API AutoscalingV2beta2API_replaceNamespacedHorizontalPodAutoscalerStatus PUT /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
BatchAPI BatchAPI_getAPIGroup GET /apis/batch/
BatchV1API BatchV1API_createNamespacedJob POST /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1API BatchV1API_deleteCollectionNamespacedJob DELETE /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1API BatchV1API_deleteNamespacedJob DELETE /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1API BatchV1API_getAPIResources GET /apis/batch/v1/
BatchV1API BatchV1API_listJobForAllNamespaces GET /apis/batch/v1/jobs
BatchV1API BatchV1API_listNamespacedJob GET /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1API BatchV1API_patchNamespacedJob PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1API BatchV1API_patchNamespacedJobStatus PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status
BatchV1API BatchV1API_readNamespacedJob GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1API BatchV1API_readNamespacedJobStatus GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status
BatchV1API BatchV1API_replaceNamespacedJob PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1API BatchV1API_replaceNamespacedJobStatus PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status
BatchV1beta1API BatchV1beta1API_createNamespacedCronJob POST /apis/batch/v1beta1/namespaces/{namespace}/cronjobs
BatchV1beta1API BatchV1beta1API_deleteCollectionNamespacedCronJob DELETE /apis/batch/v1beta1/namespaces/{namespace}/cronjobs
BatchV1beta1API BatchV1beta1API_deleteNamespacedCronJob DELETE /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1API BatchV1beta1API_getAPIResources GET /apis/batch/v1beta1/
BatchV1beta1API BatchV1beta1API_listCronJobForAllNamespaces GET /apis/batch/v1beta1/cronjobs
BatchV1beta1API BatchV1beta1API_listNamespacedCronJob GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs
BatchV1beta1API BatchV1beta1API_patchNamespacedCronJob PATCH /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1API BatchV1beta1API_patchNamespacedCronJobStatus PATCH /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status
BatchV1beta1API BatchV1beta1API_readNamespacedCronJob GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1API BatchV1beta1API_readNamespacedCronJobStatus GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status
BatchV1beta1API BatchV1beta1API_replaceNamespacedCronJob PUT /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1API BatchV1beta1API_replaceNamespacedCronJobStatus PUT /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status
BatchV2alpha1API BatchV2alpha1API_createNamespacedCronJob POST /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs
BatchV2alpha1API BatchV2alpha1API_deleteCollectionNamespacedCronJob DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs
BatchV2alpha1API BatchV2alpha1API_deleteNamespacedCronJob DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1API BatchV2alpha1API_getAPIResources GET /apis/batch/v2alpha1/
BatchV2alpha1API BatchV2alpha1API_listCronJobForAllNamespaces GET /apis/batch/v2alpha1/cronjobs
BatchV2alpha1API BatchV2alpha1API_listNamespacedCronJob GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs
BatchV2alpha1API BatchV2alpha1API_patchNamespacedCronJob PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1API BatchV2alpha1API_patchNamespacedCronJobStatus PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status
BatchV2alpha1API BatchV2alpha1API_readNamespacedCronJob GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1API BatchV2alpha1API_readNamespacedCronJobStatus GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status
BatchV2alpha1API BatchV2alpha1API_replaceNamespacedCronJob PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1API BatchV2alpha1API_replaceNamespacedCronJobStatus PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status
CertificatesAPI CertificatesAPI_getAPIGroup GET /apis/certificates.k8s.io/
CertificatesV1beta1API CertificatesV1beta1API_createCertificateSigningRequest POST /apis/certificates.k8s.io/v1beta1/certificatesigningrequests
CertificatesV1beta1API CertificatesV1beta1API_deleteCertificateSigningRequest DELETE /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1API CertificatesV1beta1API_deleteCollectionCertificateSigningRequest DELETE /apis/certificates.k8s.io/v1beta1/certificatesigningrequests
CertificatesV1beta1API CertificatesV1beta1API_getAPIResources GET /apis/certificates.k8s.io/v1beta1/
CertificatesV1beta1API CertificatesV1beta1API_listCertificateSigningRequest GET /apis/certificates.k8s.io/v1beta1/certificatesigningrequests
CertificatesV1beta1API CertificatesV1beta1API_patchCertificateSigningRequest PATCH /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1API CertificatesV1beta1API_patchCertificateSigningRequestStatus PATCH /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status
CertificatesV1beta1API CertificatesV1beta1API_readCertificateSigningRequest GET /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1API CertificatesV1beta1API_readCertificateSigningRequestStatus GET /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status
CertificatesV1beta1API CertificatesV1beta1API_replaceCertificateSigningRequest PUT /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1API CertificatesV1beta1API_replaceCertificateSigningRequestApproval PUT /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval
CertificatesV1beta1API CertificatesV1beta1API_replaceCertificateSigningRequestStatus PUT /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status
CoordinationAPI CoordinationAPI_getAPIGroup GET /apis/coordination.k8s.io/
CoordinationV1API CoordinationV1API_createNamespacedLease POST /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases
CoordinationV1API CoordinationV1API_deleteCollectionNamespacedLease DELETE /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases
CoordinationV1API CoordinationV1API_deleteNamespacedLease DELETE /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
CoordinationV1API CoordinationV1API_getAPIResources GET /apis/coordination.k8s.io/v1/
CoordinationV1API CoordinationV1API_listLeaseForAllNamespaces GET /apis/coordination.k8s.io/v1/leases
CoordinationV1API CoordinationV1API_listNamespacedLease GET /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases
CoordinationV1API CoordinationV1API_patchNamespacedLease PATCH /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
CoordinationV1API CoordinationV1API_readNamespacedLease GET /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
CoordinationV1API CoordinationV1API_replaceNamespacedLease PUT /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
CoordinationV1beta1API CoordinationV1beta1API_createNamespacedLease POST /apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases
CoordinationV1beta1API CoordinationV1beta1API_deleteCollectionNamespacedLease DELETE /apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases
CoordinationV1beta1API CoordinationV1beta1API_deleteNamespacedLease DELETE /apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}
CoordinationV1beta1API CoordinationV1beta1API_getAPIResources GET /apis/coordination.k8s.io/v1beta1/
CoordinationV1beta1API CoordinationV1beta1API_listLeaseForAllNamespaces GET /apis/coordination.k8s.io/v1beta1/leases
CoordinationV1beta1API CoordinationV1beta1API_listNamespacedLease GET /apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases
CoordinationV1beta1API CoordinationV1beta1API_patchNamespacedLease PATCH /apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}
CoordinationV1beta1API CoordinationV1beta1API_readNamespacedLease GET /apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}
CoordinationV1beta1API CoordinationV1beta1API_replaceNamespacedLease PUT /apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}
CoreAPI CoreAPI_getAPIVersions GET /api/
CoreV1API CoreV1API_connectDeleteNamespacedPodProxy DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1API CoreV1API_connectDeleteNamespacedPodProxyWithPath DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1API CoreV1API_connectDeleteNamespacedServiceProxy DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1API CoreV1API_connectDeleteNamespacedServiceProxyWithPath DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1API CoreV1API_connectDeleteNodeProxy DELETE /api/v1/nodes/{name}/proxy
CoreV1API CoreV1API_connectDeleteNodeProxyWithPath DELETE /api/v1/nodes/{name}/proxy/{path}
CoreV1API CoreV1API_connectGetNamespacedPodAttach GET /api/v1/namespaces/{namespace}/pods/{name}/attach
CoreV1API CoreV1API_connectGetNamespacedPodExec GET /api/v1/namespaces/{namespace}/pods/{name}/exec
CoreV1API CoreV1API_connectGetNamespacedPodPortforward GET /api/v1/namespaces/{namespace}/pods/{name}/portforward
CoreV1API CoreV1API_connectGetNamespacedPodProxy GET /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1API CoreV1API_connectGetNamespacedPodProxyWithPath GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1API CoreV1API_connectGetNamespacedServiceProxy GET /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1API CoreV1API_connectGetNamespacedServiceProxyWithPath GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1API CoreV1API_connectGetNodeProxy GET /api/v1/nodes/{name}/proxy
CoreV1API CoreV1API_connectGetNodeProxyWithPath GET /api/v1/nodes/{name}/proxy/{path}
CoreV1API CoreV1API_connectHeadNamespacedPodProxy HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1API CoreV1API_connectHeadNamespacedPodProxyWithPath HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1API CoreV1API_connectHeadNamespacedServiceProxy HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1API CoreV1API_connectHeadNamespacedServiceProxyWithPath HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1API CoreV1API_connectHeadNodeProxy HEAD /api/v1/nodes/{name}/proxy
CoreV1API CoreV1API_connectHeadNodeProxyWithPath HEAD /api/v1/nodes/{name}/proxy/{path}
CoreV1API CoreV1API_connectOptionsNamespacedPodProxy OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1API CoreV1API_connectOptionsNamespacedPodProxyWithPath OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1API CoreV1API_connectOptionsNamespacedServiceProxy OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1API CoreV1API_connectOptionsNamespacedServiceProxyWithPath OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1API CoreV1API_connectOptionsNodeProxy OPTIONS /api/v1/nodes/{name}/proxy
CoreV1API CoreV1API_connectOptionsNodeProxyWithPath OPTIONS /api/v1/nodes/{name}/proxy/{path}
CoreV1API CoreV1API_connectPatchNamespacedPodProxy PATCH /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1API CoreV1API_connectPatchNamespacedPodProxyWithPath PATCH /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1API CoreV1API_connectPatchNamespacedServiceProxy PATCH /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1API CoreV1API_connectPatchNamespacedServiceProxyWithPath PATCH /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1API CoreV1API_connectPatchNodeProxy PATCH /api/v1/nodes/{name}/proxy
CoreV1API CoreV1API_connectPatchNodeProxyWithPath PATCH /api/v1/nodes/{name}/proxy/{path}
CoreV1API CoreV1API_connectPostNamespacedPodAttach POST /api/v1/namespaces/{namespace}/pods/{name}/attach
CoreV1API CoreV1API_connectPostNamespacedPodExec POST /api/v1/namespaces/{namespace}/pods/{name}/exec
CoreV1API CoreV1API_connectPostNamespacedPodPortforward POST /api/v1/namespaces/{namespace}/pods/{name}/portforward
CoreV1API CoreV1API_connectPostNamespacedPodProxy POST /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1API CoreV1API_connectPostNamespacedPodProxyWithPath POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1API CoreV1API_connectPostNamespacedServiceProxy POST /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1API CoreV1API_connectPostNamespacedServiceProxyWithPath POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1API CoreV1API_connectPostNodeProxy POST /api/v1/nodes/{name}/proxy
CoreV1API CoreV1API_connectPostNodeProxyWithPath POST /api/v1/nodes/{name}/proxy/{path}
CoreV1API CoreV1API_connectPutNamespacedPodProxy PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1API CoreV1API_connectPutNamespacedPodProxyWithPath PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1API CoreV1API_connectPutNamespacedServiceProxy PUT /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1API CoreV1API_connectPutNamespacedServiceProxyWithPath PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1API CoreV1API_connectPutNodeProxy PUT /api/v1/nodes/{name}/proxy
CoreV1API CoreV1API_connectPutNodeProxyWithPath PUT /api/v1/nodes/{name}/proxy/{path}
CoreV1API CoreV1API_createNamespace POST /api/v1/namespaces
CoreV1API CoreV1API_createNamespacedBinding POST /api/v1/namespaces/{namespace}/bindings
CoreV1API CoreV1API_createNamespacedConfigMap POST /api/v1/namespaces/{namespace}/configmaps
CoreV1API CoreV1API_createNamespacedEndpoints POST /api/v1/namespaces/{namespace}/endpoints
CoreV1API CoreV1API_createNamespacedEvent POST /api/v1/namespaces/{namespace}/events
CoreV1API CoreV1API_createNamespacedLimitRange POST /api/v1/namespaces/{namespace}/limitranges
CoreV1API CoreV1API_createNamespacedPersistentVolumeClaim POST /api/v1/namespaces/{namespace}/persistentvolumeclaims
CoreV1API CoreV1API_createNamespacedPod POST /api/v1/namespaces/{namespace}/pods
CoreV1API CoreV1API_createNamespacedPodBinding POST /api/v1/namespaces/{namespace}/pods/{name}/binding
CoreV1API CoreV1API_createNamespacedPodEviction POST /api/v1/namespaces/{namespace}/pods/{name}/eviction
CoreV1API CoreV1API_createNamespacedPodTemplate POST /api/v1/namespaces/{namespace}/podtemplates
CoreV1API CoreV1API_createNamespacedReplicationController POST /api/v1/namespaces/{namespace}/replicationcontrollers
CoreV1API CoreV1API_createNamespacedResourceQuota POST /api/v1/namespaces/{namespace}/resourcequotas
CoreV1API CoreV1API_createNamespacedSecret POST /api/v1/namespaces/{namespace}/secrets
CoreV1API CoreV1API_createNamespacedService POST /api/v1/namespaces/{namespace}/services
CoreV1API CoreV1API_createNamespacedServiceAccount POST /api/v1/namespaces/{namespace}/serviceaccounts
CoreV1API CoreV1API_createNamespacedServiceAccountToken POST /api/v1/namespaces/{namespace}/serviceaccounts/{name}/token
CoreV1API CoreV1API_createNode POST /api/v1/nodes
CoreV1API CoreV1API_createPersistentVolume POST /api/v1/persistentvolumes
CoreV1API CoreV1API_deleteCollectionNamespacedConfigMap DELETE /api/v1/namespaces/{namespace}/configmaps
CoreV1API CoreV1API_deleteCollectionNamespacedEndpoints DELETE /api/v1/namespaces/{namespace}/endpoints
CoreV1API CoreV1API_deleteCollectionNamespacedEvent DELETE /api/v1/namespaces/{namespace}/events
CoreV1API CoreV1API_deleteCollectionNamespacedLimitRange DELETE /api/v1/namespaces/{namespace}/limitranges
CoreV1API CoreV1API_deleteCollectionNamespacedPersistentVolumeClaim DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims
CoreV1API CoreV1API_deleteCollectionNamespacedPod DELETE /api/v1/namespaces/{namespace}/pods
CoreV1API CoreV1API_deleteCollectionNamespacedPodTemplate DELETE /api/v1/namespaces/{namespace}/podtemplates
CoreV1API CoreV1API_deleteCollectionNamespacedReplicationController DELETE /api/v1/namespaces/{namespace}/replicationcontrollers
CoreV1API CoreV1API_deleteCollectionNamespacedResourceQuota DELETE /api/v1/namespaces/{namespace}/resourcequotas
CoreV1API CoreV1API_deleteCollectionNamespacedSecret DELETE /api/v1/namespaces/{namespace}/secrets
CoreV1API CoreV1API_deleteCollectionNamespacedServiceAccount DELETE /api/v1/namespaces/{namespace}/serviceaccounts
CoreV1API CoreV1API_deleteCollectionNode DELETE /api/v1/nodes
CoreV1API CoreV1API_deleteCollectionPersistentVolume DELETE /api/v1/persistentvolumes
CoreV1API CoreV1API_deleteNamespace DELETE /api/v1/namespaces/{name}
CoreV1API CoreV1API_deleteNamespacedConfigMap DELETE /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1API CoreV1API_deleteNamespacedEndpoints DELETE /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1API CoreV1API_deleteNamespacedEvent DELETE /api/v1/namespaces/{namespace}/events/{name}
CoreV1API CoreV1API_deleteNamespacedLimitRange DELETE /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1API CoreV1API_deleteNamespacedPersistentVolumeClaim DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1API CoreV1API_deleteNamespacedPod DELETE /api/v1/namespaces/{namespace}/pods/{name}
CoreV1API CoreV1API_deleteNamespacedPodTemplate DELETE /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1API CoreV1API_deleteNamespacedReplicationController DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1API CoreV1API_deleteNamespacedResourceQuota DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1API CoreV1API_deleteNamespacedSecret DELETE /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1API CoreV1API_deleteNamespacedService DELETE /api/v1/namespaces/{namespace}/services/{name}
CoreV1API CoreV1API_deleteNamespacedServiceAccount DELETE /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1API CoreV1API_deleteNode DELETE /api/v1/nodes/{name}
CoreV1API CoreV1API_deletePersistentVolume DELETE /api/v1/persistentvolumes/{name}
CoreV1API CoreV1API_getAPIResources GET /api/v1/
CoreV1API CoreV1API_listComponentStatus GET /api/v1/componentstatuses
CoreV1API CoreV1API_listConfigMapForAllNamespaces GET /api/v1/configmaps
CoreV1API CoreV1API_listEndpointsForAllNamespaces GET /api/v1/endpoints
CoreV1API CoreV1API_listEventForAllNamespaces GET /api/v1/events
CoreV1API CoreV1API_listLimitRangeForAllNamespaces GET /api/v1/limitranges
CoreV1API CoreV1API_listNamespace GET /api/v1/namespaces
CoreV1API CoreV1API_listNamespacedConfigMap GET /api/v1/namespaces/{namespace}/configmaps
CoreV1API CoreV1API_listNamespacedEndpoints GET /api/v1/namespaces/{namespace}/endpoints
CoreV1API CoreV1API_listNamespacedEvent GET /api/v1/namespaces/{namespace}/events
CoreV1API CoreV1API_listNamespacedLimitRange GET /api/v1/namespaces/{namespace}/limitranges
CoreV1API CoreV1API_listNamespacedPersistentVolumeClaim GET /api/v1/namespaces/{namespace}/persistentvolumeclaims
CoreV1API CoreV1API_listNamespacedPod GET /api/v1/namespaces/{namespace}/pods
CoreV1API CoreV1API_listNamespacedPodTemplate GET /api/v1/namespaces/{namespace}/podtemplates
CoreV1API CoreV1API_listNamespacedReplicationController GET /api/v1/namespaces/{namespace}/replicationcontrollers
CoreV1API CoreV1API_listNamespacedResourceQuota GET /api/v1/namespaces/{namespace}/resourcequotas
CoreV1API CoreV1API_listNamespacedSecret GET /api/v1/namespaces/{namespace}/secrets
CoreV1API CoreV1API_listNamespacedService GET /api/v1/namespaces/{namespace}/services
CoreV1API CoreV1API_listNamespacedServiceAccount GET /api/v1/namespaces/{namespace}/serviceaccounts
CoreV1API CoreV1API_listNode GET /api/v1/nodes
CoreV1API CoreV1API_listPersistentVolume GET /api/v1/persistentvolumes
CoreV1API CoreV1API_listPersistentVolumeClaimForAllNamespaces GET /api/v1/persistentvolumeclaims
CoreV1API CoreV1API_listPodForAllNamespaces GET /api/v1/pods
CoreV1API CoreV1API_listPodTemplateForAllNamespaces GET /api/v1/podtemplates
CoreV1API CoreV1API_listReplicationControllerForAllNamespaces GET /api/v1/replicationcontrollers
CoreV1API CoreV1API_listResourceQuotaForAllNamespaces GET /api/v1/resourcequotas
CoreV1API CoreV1API_listSecretForAllNamespaces GET /api/v1/secrets
CoreV1API CoreV1API_listServiceAccountForAllNamespaces GET /api/v1/serviceaccounts
CoreV1API CoreV1API_listServiceForAllNamespaces GET /api/v1/services
CoreV1API CoreV1API_patchNamespace PATCH /api/v1/namespaces/{name}
CoreV1API CoreV1API_patchNamespaceStatus PATCH /api/v1/namespaces/{name}/status
CoreV1API CoreV1API_patchNamespacedConfigMap PATCH /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1API CoreV1API_patchNamespacedEndpoints PATCH /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1API CoreV1API_patchNamespacedEvent PATCH /api/v1/namespaces/{namespace}/events/{name}
CoreV1API CoreV1API_patchNamespacedLimitRange PATCH /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1API CoreV1API_patchNamespacedPersistentVolumeClaim PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1API CoreV1API_patchNamespacedPersistentVolumeClaimStatus PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
CoreV1API CoreV1API_patchNamespacedPod PATCH /api/v1/namespaces/{namespace}/pods/{name}
CoreV1API CoreV1API_patchNamespacedPodStatus PATCH /api/v1/namespaces/{namespace}/pods/{name}/status
CoreV1API CoreV1API_patchNamespacedPodTemplate PATCH /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1API CoreV1API_patchNamespacedReplicationController PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1API CoreV1API_patchNamespacedReplicationControllerScale PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
CoreV1API CoreV1API_patchNamespacedReplicationControllerStatus PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
CoreV1API CoreV1API_patchNamespacedResourceQuota PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1API CoreV1API_patchNamespacedResourceQuotaStatus PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
CoreV1API CoreV1API_patchNamespacedSecret PATCH /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1API CoreV1API_patchNamespacedService PATCH /api/v1/namespaces/{namespace}/services/{name}
CoreV1API CoreV1API_patchNamespacedServiceAccount PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1API CoreV1API_patchNamespacedServiceStatus PATCH /api/v1/namespaces/{namespace}/services/{name}/status
CoreV1API CoreV1API_patchNode PATCH /api/v1/nodes/{name}
CoreV1API CoreV1API_patchNodeStatus PATCH /api/v1/nodes/{name}/status
CoreV1API CoreV1API_patchPersistentVolume PATCH /api/v1/persistentvolumes/{name}
CoreV1API CoreV1API_patchPersistentVolumeStatus PATCH /api/v1/persistentvolumes/{name}/status
CoreV1API CoreV1API_readComponentStatus GET /api/v1/componentstatuses/{name}
CoreV1API CoreV1API_readNamespace GET /api/v1/namespaces/{name}
CoreV1API CoreV1API_readNamespaceStatus GET /api/v1/namespaces/{name}/status
CoreV1API CoreV1API_readNamespacedConfigMap GET /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1API CoreV1API_readNamespacedEndpoints GET /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1API CoreV1API_readNamespacedEvent GET /api/v1/namespaces/{namespace}/events/{name}
CoreV1API CoreV1API_readNamespacedLimitRange GET /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1API CoreV1API_readNamespacedPersistentVolumeClaim GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1API CoreV1API_readNamespacedPersistentVolumeClaimStatus GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
CoreV1API CoreV1API_readNamespacedPod GET /api/v1/namespaces/{namespace}/pods/{name}
CoreV1API CoreV1API_readNamespacedPodLog GET /api/v1/namespaces/{namespace}/pods/{name}/log
CoreV1API CoreV1API_readNamespacedPodStatus GET /api/v1/namespaces/{namespace}/pods/{name}/status
CoreV1API CoreV1API_readNamespacedPodTemplate GET /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1API CoreV1API_readNamespacedReplicationController GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1API CoreV1API_readNamespacedReplicationControllerScale GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
CoreV1API CoreV1API_readNamespacedReplicationControllerStatus GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
CoreV1API CoreV1API_readNamespacedResourceQuota GET /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1API CoreV1API_readNamespacedResourceQuotaStatus GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
CoreV1API CoreV1API_readNamespacedSecret GET /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1API CoreV1API_readNamespacedService GET /api/v1/namespaces/{namespace}/services/{name}
CoreV1API CoreV1API_readNamespacedServiceAccount GET /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1API CoreV1API_readNamespacedServiceStatus GET /api/v1/namespaces/{namespace}/services/{name}/status
CoreV1API CoreV1API_readNode GET /api/v1/nodes/{name}
CoreV1API CoreV1API_readNodeStatus GET /api/v1/nodes/{name}/status
CoreV1API CoreV1API_readPersistentVolume GET /api/v1/persistentvolumes/{name}
CoreV1API CoreV1API_readPersistentVolumeStatus GET /api/v1/persistentvolumes/{name}/status
CoreV1API CoreV1API_replaceNamespace PUT /api/v1/namespaces/{name}
CoreV1API CoreV1API_replaceNamespaceFinalize PUT /api/v1/namespaces/{name}/finalize
CoreV1API CoreV1API_replaceNamespaceStatus PUT /api/v1/namespaces/{name}/status
CoreV1API CoreV1API_replaceNamespacedConfigMap PUT /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1API CoreV1API_replaceNamespacedEndpoints PUT /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1API CoreV1API_replaceNamespacedEvent PUT /api/v1/namespaces/{namespace}/events/{name}
CoreV1API CoreV1API_replaceNamespacedLimitRange PUT /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1API CoreV1API_replaceNamespacedPersistentVolumeClaim PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1API CoreV1API_replaceNamespacedPersistentVolumeClaimStatus PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
CoreV1API CoreV1API_replaceNamespacedPod PUT /api/v1/namespaces/{namespace}/pods/{name}
CoreV1API CoreV1API_replaceNamespacedPodStatus PUT /api/v1/namespaces/{namespace}/pods/{name}/status
CoreV1API CoreV1API_replaceNamespacedPodTemplate PUT /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1API CoreV1API_replaceNamespacedReplicationController PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1API CoreV1API_replaceNamespacedReplicationControllerScale PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
CoreV1API CoreV1API_replaceNamespacedReplicationControllerStatus PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
CoreV1API CoreV1API_replaceNamespacedResourceQuota PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1API CoreV1API_replaceNamespacedResourceQuotaStatus PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
CoreV1API CoreV1API_replaceNamespacedSecret PUT /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1API CoreV1API_replaceNamespacedService PUT /api/v1/namespaces/{namespace}/services/{name}
CoreV1API CoreV1API_replaceNamespacedServiceAccount PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1API CoreV1API_replaceNamespacedServiceStatus PUT /api/v1/namespaces/{namespace}/services/{name}/status
CoreV1API CoreV1API_replaceNode PUT /api/v1/nodes/{name}
CoreV1API CoreV1API_replaceNodeStatus PUT /api/v1/nodes/{name}/status
CoreV1API CoreV1API_replacePersistentVolume PUT /api/v1/persistentvolumes/{name}
CoreV1API CoreV1API_replacePersistentVolumeStatus PUT /api/v1/persistentvolumes/{name}/status
CustomObjectsAPI CustomObjectsAPI_createClusterCustomObject POST /apis/{group}/{version}/{plural}
CustomObjectsAPI CustomObjectsAPI_createNamespacedCustomObject POST /apis/{group}/{version}/namespaces/{namespace}/{plural}
CustomObjectsAPI CustomObjectsAPI_deleteClusterCustomObject DELETE /apis/{group}/{version}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_deleteCollectionClusterCustomObject DELETE /apis/{group}/{version}/{plural}
CustomObjectsAPI CustomObjectsAPI_deleteCollectionNamespacedCustomObject DELETE /apis/{group}/{version}/namespaces/{namespace}/{plural}
CustomObjectsAPI CustomObjectsAPI_deleteNamespacedCustomObject DELETE /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_getClusterCustomObject GET /apis/{group}/{version}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_getClusterCustomObjectScale GET /apis/{group}/{version}/{plural}/{name}/scale
CustomObjectsAPI CustomObjectsAPI_getClusterCustomObjectStatus GET /apis/{group}/{version}/{plural}/{name}/status
CustomObjectsAPI CustomObjectsAPI_getNamespacedCustomObject GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_getNamespacedCustomObjectScale GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale
CustomObjectsAPI CustomObjectsAPI_getNamespacedCustomObjectStatus GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status
CustomObjectsAPI CustomObjectsAPI_listClusterCustomObject GET /apis/{group}/{version}/{plural}
CustomObjectsAPI CustomObjectsAPI_listNamespacedCustomObject GET /apis/{group}/{version}/namespaces/{namespace}/{plural}
CustomObjectsAPI CustomObjectsAPI_patchClusterCustomObject PATCH /apis/{group}/{version}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_patchClusterCustomObjectScale PATCH /apis/{group}/{version}/{plural}/{name}/scale
CustomObjectsAPI CustomObjectsAPI_patchClusterCustomObjectStatus PATCH /apis/{group}/{version}/{plural}/{name}/status
CustomObjectsAPI CustomObjectsAPI_patchNamespacedCustomObject PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_patchNamespacedCustomObjectScale PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale
CustomObjectsAPI CustomObjectsAPI_patchNamespacedCustomObjectStatus PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status
CustomObjectsAPI CustomObjectsAPI_replaceClusterCustomObject PUT /apis/{group}/{version}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_replaceClusterCustomObjectScale PUT /apis/{group}/{version}/{plural}/{name}/scale
CustomObjectsAPI CustomObjectsAPI_replaceClusterCustomObjectStatus PUT /apis/{group}/{version}/{plural}/{name}/status
CustomObjectsAPI CustomObjectsAPI_replaceNamespacedCustomObject PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsAPI CustomObjectsAPI_replaceNamespacedCustomObjectScale PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale
CustomObjectsAPI CustomObjectsAPI_replaceNamespacedCustomObjectStatus PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status
DiscoveryAPI DiscoveryAPI_getAPIGroup GET /apis/discovery.k8s.io/
DiscoveryV1beta1API DiscoveryV1beta1API_createNamespacedEndpointSlice POST /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
DiscoveryV1beta1API DiscoveryV1beta1API_deleteCollectionNamespacedEndpointSlice DELETE /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
DiscoveryV1beta1API DiscoveryV1beta1API_deleteNamespacedEndpointSlice DELETE /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1beta1API DiscoveryV1beta1API_getAPIResources GET /apis/discovery.k8s.io/v1beta1/
DiscoveryV1beta1API DiscoveryV1beta1API_listEndpointSliceForAllNamespaces GET /apis/discovery.k8s.io/v1beta1/endpointslices
DiscoveryV1beta1API DiscoveryV1beta1API_listNamespacedEndpointSlice GET /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
DiscoveryV1beta1API DiscoveryV1beta1API_patchNamespacedEndpointSlice PATCH /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1beta1API DiscoveryV1beta1API_readNamespacedEndpointSlice GET /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1beta1API DiscoveryV1beta1API_replaceNamespacedEndpointSlice PUT /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
EventsAPI EventsAPI_getAPIGroup GET /apis/events.k8s.io/
EventsV1beta1API EventsV1beta1API_createNamespacedEvent POST /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events
EventsV1beta1API EventsV1beta1API_deleteCollectionNamespacedEvent DELETE /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events
EventsV1beta1API EventsV1beta1API_deleteNamespacedEvent DELETE /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
EventsV1beta1API EventsV1beta1API_getAPIResources GET /apis/events.k8s.io/v1beta1/
EventsV1beta1API EventsV1beta1API_listEventForAllNamespaces GET /apis/events.k8s.io/v1beta1/events
EventsV1beta1API EventsV1beta1API_listNamespacedEvent GET /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events
EventsV1beta1API EventsV1beta1API_patchNamespacedEvent PATCH /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
EventsV1beta1API EventsV1beta1API_readNamespacedEvent GET /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
EventsV1beta1API EventsV1beta1API_replaceNamespacedEvent PUT /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
ExtensionsAPI ExtensionsAPI_getAPIGroup GET /apis/extensions/
ExtensionsV1beta1API ExtensionsV1beta1API_createNamespacedDaemonSet POST /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
ExtensionsV1beta1API ExtensionsV1beta1API_createNamespacedDeployment POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments
ExtensionsV1beta1API ExtensionsV1beta1API_createNamespacedDeploymentRollback POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
ExtensionsV1beta1API ExtensionsV1beta1API_createNamespacedIngress POST /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
ExtensionsV1beta1API ExtensionsV1beta1API_createNamespacedNetworkPolicy POST /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
ExtensionsV1beta1API ExtensionsV1beta1API_createNamespacedReplicaSet POST /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
ExtensionsV1beta1API ExtensionsV1beta1API_createPodSecurityPolicy POST /apis/extensions/v1beta1/podsecuritypolicies
ExtensionsV1beta1API ExtensionsV1beta1API_deleteCollectionNamespacedDaemonSet DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
ExtensionsV1beta1API ExtensionsV1beta1API_deleteCollectionNamespacedDeployment DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments
ExtensionsV1beta1API ExtensionsV1beta1API_deleteCollectionNamespacedIngress DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
ExtensionsV1beta1API ExtensionsV1beta1API_deleteCollectionNamespacedNetworkPolicy DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
ExtensionsV1beta1API ExtensionsV1beta1API_deleteCollectionNamespacedReplicaSet DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
ExtensionsV1beta1API ExtensionsV1beta1API_deleteCollectionPodSecurityPolicy DELETE /apis/extensions/v1beta1/podsecuritypolicies
ExtensionsV1beta1API ExtensionsV1beta1API_deleteNamespacedDaemonSet DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_deleteNamespacedDeployment DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_deleteNamespacedIngress DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_deleteNamespacedNetworkPolicy DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_deleteNamespacedReplicaSet DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_deletePodSecurityPolicy DELETE /apis/extensions/v1beta1/podsecuritypolicies/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_getAPIResources GET /apis/extensions/v1beta1/
ExtensionsV1beta1API ExtensionsV1beta1API_listDaemonSetForAllNamespaces GET /apis/extensions/v1beta1/daemonsets
ExtensionsV1beta1API ExtensionsV1beta1API_listDeploymentForAllNamespaces GET /apis/extensions/v1beta1/deployments
ExtensionsV1beta1API ExtensionsV1beta1API_listIngressForAllNamespaces GET /apis/extensions/v1beta1/ingresses
ExtensionsV1beta1API ExtensionsV1beta1API_listNamespacedDaemonSet GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
ExtensionsV1beta1API ExtensionsV1beta1API_listNamespacedDeployment GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments
ExtensionsV1beta1API ExtensionsV1beta1API_listNamespacedIngress GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
ExtensionsV1beta1API ExtensionsV1beta1API_listNamespacedNetworkPolicy GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
ExtensionsV1beta1API ExtensionsV1beta1API_listNamespacedReplicaSet GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
ExtensionsV1beta1API ExtensionsV1beta1API_listNetworkPolicyForAllNamespaces GET /apis/extensions/v1beta1/networkpolicies
ExtensionsV1beta1API ExtensionsV1beta1API_listPodSecurityPolicy GET /apis/extensions/v1beta1/podsecuritypolicies
ExtensionsV1beta1API ExtensionsV1beta1API_listReplicaSetForAllNamespaces GET /apis/extensions/v1beta1/replicasets
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedDaemonSet PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedDaemonSetStatus PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedDeployment PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedDeploymentScale PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedDeploymentStatus PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedIngress PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedIngressStatus PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedNetworkPolicy PATCH /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedReplicaSet PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedReplicaSetScale PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedReplicaSetStatus PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_patchNamespacedReplicationControllerDummyScale PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_patchPodSecurityPolicy PATCH /apis/extensions/v1beta1/podsecuritypolicies/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedDaemonSet GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedDaemonSetStatus GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedDeployment GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedDeploymentScale GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedDeploymentStatus GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedIngress GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedIngressStatus GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedNetworkPolicy GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedReplicaSet GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedReplicaSetScale GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedReplicaSetStatus GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_readNamespacedReplicationControllerDummyScale GET /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_readPodSecurityPolicy GET /apis/extensions/v1beta1/podsecuritypolicies/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedDaemonSet PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedDaemonSetStatus PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedDeployment PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedDeploymentScale PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedDeploymentStatus PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedIngress PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedIngressStatus PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedNetworkPolicy PUT /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedReplicaSet PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedReplicaSetScale PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedReplicaSetStatus PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
ExtensionsV1beta1API ExtensionsV1beta1API_replaceNamespacedReplicationControllerDummyScale PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
ExtensionsV1beta1API ExtensionsV1beta1API_replacePodSecurityPolicy PUT /apis/extensions/v1beta1/podsecuritypolicies/{name}
FlowcontrolApiserverAPI FlowcontrolApiserverAPI_getAPIGroup GET /apis/flowcontrol.apiserver.k8s.io/
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_createFlowSchema POST /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_createPriorityLevelConfiguration POST /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_deleteCollectionFlowSchema DELETE /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_deleteCollectionPriorityLevelConfiguration DELETE /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_deleteFlowSchema DELETE /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_deletePriorityLevelConfiguration DELETE /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_getAPIResources GET /apis/flowcontrol.apiserver.k8s.io/v1alpha1/
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_listFlowSchema GET /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_listPriorityLevelConfiguration GET /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_patchFlowSchema PATCH /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_patchFlowSchemaStatus PATCH /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_patchPriorityLevelConfiguration PATCH /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_patchPriorityLevelConfigurationStatus PATCH /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_readFlowSchema GET /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_readFlowSchemaStatus GET /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_readPriorityLevelConfiguration GET /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_readPriorityLevelConfigurationStatus GET /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_replaceFlowSchema PUT /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_replaceFlowSchemaStatus PUT /apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_replacePriorityLevelConfiguration PUT /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1alpha1API FlowcontrolApiserverV1alpha1API_replacePriorityLevelConfigurationStatus PUT /apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status
LogsAPI LogsAPI_logFileHandler GET /logs/{logpath}
LogsAPI LogsAPI_logFileListHandler GET /logs/
NetworkingAPI NetworkingAPI_getAPIGroup GET /apis/networking.k8s.io/
NetworkingV1API NetworkingV1API_createNamespacedNetworkPolicy POST /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies
NetworkingV1API NetworkingV1API_deleteCollectionNamespacedNetworkPolicy DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies
NetworkingV1API NetworkingV1API_deleteNamespacedNetworkPolicy DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NetworkingV1API NetworkingV1API_getAPIResources GET /apis/networking.k8s.io/v1/
NetworkingV1API NetworkingV1API_listNamespacedNetworkPolicy GET /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies
NetworkingV1API NetworkingV1API_listNetworkPolicyForAllNamespaces GET /apis/networking.k8s.io/v1/networkpolicies
NetworkingV1API NetworkingV1API_patchNamespacedNetworkPolicy PATCH /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NetworkingV1API NetworkingV1API_readNamespacedNetworkPolicy GET /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NetworkingV1API NetworkingV1API_replaceNamespacedNetworkPolicy PUT /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NetworkingV1beta1API NetworkingV1beta1API_createNamespacedIngress POST /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses
NetworkingV1beta1API NetworkingV1beta1API_deleteCollectionNamespacedIngress DELETE /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses
NetworkingV1beta1API NetworkingV1beta1API_deleteNamespacedIngress DELETE /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}
NetworkingV1beta1API NetworkingV1beta1API_getAPIResources GET /apis/networking.k8s.io/v1beta1/
NetworkingV1beta1API NetworkingV1beta1API_listIngressForAllNamespaces GET /apis/networking.k8s.io/v1beta1/ingresses
NetworkingV1beta1API NetworkingV1beta1API_listNamespacedIngress GET /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses
NetworkingV1beta1API NetworkingV1beta1API_patchNamespacedIngress PATCH /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}
NetworkingV1beta1API NetworkingV1beta1API_patchNamespacedIngressStatus PATCH /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status
NetworkingV1beta1API NetworkingV1beta1API_readNamespacedIngress GET /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}
NetworkingV1beta1API NetworkingV1beta1API_readNamespacedIngressStatus GET /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status
NetworkingV1beta1API NetworkingV1beta1API_replaceNamespacedIngress PUT /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}
NetworkingV1beta1API NetworkingV1beta1API_replaceNamespacedIngressStatus PUT /apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status
NodeAPI NodeAPI_getAPIGroup GET /apis/node.k8s.io/
NodeV1alpha1API NodeV1alpha1API_createRuntimeClass POST /apis/node.k8s.io/v1alpha1/runtimeclasses
NodeV1alpha1API NodeV1alpha1API_deleteCollectionRuntimeClass DELETE /apis/node.k8s.io/v1alpha1/runtimeclasses
NodeV1alpha1API NodeV1alpha1API_deleteRuntimeClass DELETE /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1alpha1API NodeV1alpha1API_getAPIResources GET /apis/node.k8s.io/v1alpha1/
NodeV1alpha1API NodeV1alpha1API_listRuntimeClass GET /apis/node.k8s.io/v1alpha1/runtimeclasses
NodeV1alpha1API NodeV1alpha1API_patchRuntimeClass PATCH /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1alpha1API NodeV1alpha1API_readRuntimeClass GET /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1alpha1API NodeV1alpha1API_replaceRuntimeClass PUT /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1beta1API NodeV1beta1API_createRuntimeClass POST /apis/node.k8s.io/v1beta1/runtimeclasses
NodeV1beta1API NodeV1beta1API_deleteCollectionRuntimeClass DELETE /apis/node.k8s.io/v1beta1/runtimeclasses
NodeV1beta1API NodeV1beta1API_deleteRuntimeClass DELETE /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
NodeV1beta1API NodeV1beta1API_getAPIResources GET /apis/node.k8s.io/v1beta1/
NodeV1beta1API NodeV1beta1API_listRuntimeClass GET /apis/node.k8s.io/v1beta1/runtimeclasses
NodeV1beta1API NodeV1beta1API_patchRuntimeClass PATCH /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
NodeV1beta1API NodeV1beta1API_readRuntimeClass GET /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
NodeV1beta1API NodeV1beta1API_replaceRuntimeClass PUT /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
PolicyAPI PolicyAPI_getAPIGroup GET /apis/policy/
PolicyV1beta1API PolicyV1beta1API_createNamespacedPodDisruptionBudget POST /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1API PolicyV1beta1API_createPodSecurityPolicy POST /apis/policy/v1beta1/podsecuritypolicies
PolicyV1beta1API PolicyV1beta1API_deleteCollectionNamespacedPodDisruptionBudget DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1API PolicyV1beta1API_deleteCollectionPodSecurityPolicy DELETE /apis/policy/v1beta1/podsecuritypolicies
PolicyV1beta1API PolicyV1beta1API_deleteNamespacedPodDisruptionBudget DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1API PolicyV1beta1API_deletePodSecurityPolicy DELETE /apis/policy/v1beta1/podsecuritypolicies/{name}
PolicyV1beta1API PolicyV1beta1API_getAPIResources GET /apis/policy/v1beta1/
PolicyV1beta1API PolicyV1beta1API_listNamespacedPodDisruptionBudget GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1API PolicyV1beta1API_listPodDisruptionBudgetForAllNamespaces GET /apis/policy/v1beta1/poddisruptionbudgets
PolicyV1beta1API PolicyV1beta1API_listPodSecurityPolicy GET /apis/policy/v1beta1/podsecuritypolicies
PolicyV1beta1API PolicyV1beta1API_patchNamespacedPodDisruptionBudget PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1API PolicyV1beta1API_patchNamespacedPodDisruptionBudgetStatus PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1beta1API PolicyV1beta1API_patchPodSecurityPolicy PATCH /apis/policy/v1beta1/podsecuritypolicies/{name}
PolicyV1beta1API PolicyV1beta1API_readNamespacedPodDisruptionBudget GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1API PolicyV1beta1API_readNamespacedPodDisruptionBudgetStatus GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1beta1API PolicyV1beta1API_readPodSecurityPolicy GET /apis/policy/v1beta1/podsecuritypolicies/{name}
PolicyV1beta1API PolicyV1beta1API_replaceNamespacedPodDisruptionBudget PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1API PolicyV1beta1API_replaceNamespacedPodDisruptionBudgetStatus PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1beta1API PolicyV1beta1API_replacePodSecurityPolicy PUT /apis/policy/v1beta1/podsecuritypolicies/{name}
RbacAuthorizationAPI RbacAuthorizationAPI_getAPIGroup GET /apis/rbac.authorization.k8s.io/
RbacAuthorizationV1API RbacAuthorizationV1API_createClusterRole POST /apis/rbac.authorization.k8s.io/v1/clusterroles
RbacAuthorizationV1API RbacAuthorizationV1API_createClusterRoleBinding POST /apis/rbac.authorization.k8s.io/v1/clusterrolebindings
RbacAuthorizationV1API RbacAuthorizationV1API_createNamespacedRole POST /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles
RbacAuthorizationV1API RbacAuthorizationV1API_createNamespacedRoleBinding POST /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1API RbacAuthorizationV1API_deleteClusterRole DELETE /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_deleteClusterRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_deleteCollectionClusterRole DELETE /apis/rbac.authorization.k8s.io/v1/clusterroles
RbacAuthorizationV1API RbacAuthorizationV1API_deleteCollectionClusterRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1/clusterrolebindings
RbacAuthorizationV1API RbacAuthorizationV1API_deleteCollectionNamespacedRole DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles
RbacAuthorizationV1API RbacAuthorizationV1API_deleteCollectionNamespacedRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1API RbacAuthorizationV1API_deleteNamespacedRole DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_deleteNamespacedRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_getAPIResources GET /apis/rbac.authorization.k8s.io/v1/
RbacAuthorizationV1API RbacAuthorizationV1API_listClusterRole GET /apis/rbac.authorization.k8s.io/v1/clusterroles
RbacAuthorizationV1API RbacAuthorizationV1API_listClusterRoleBinding GET /apis/rbac.authorization.k8s.io/v1/clusterrolebindings
RbacAuthorizationV1API RbacAuthorizationV1API_listNamespacedRole GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles
RbacAuthorizationV1API RbacAuthorizationV1API_listNamespacedRoleBinding GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1API RbacAuthorizationV1API_listRoleBindingForAllNamespaces GET /apis/rbac.authorization.k8s.io/v1/rolebindings
RbacAuthorizationV1API RbacAuthorizationV1API_listRoleForAllNamespaces GET /apis/rbac.authorization.k8s.io/v1/roles
RbacAuthorizationV1API RbacAuthorizationV1API_patchClusterRole PATCH /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_patchClusterRoleBinding PATCH /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_patchNamespacedRole PATCH /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_patchNamespacedRoleBinding PATCH /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_readClusterRole GET /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_readClusterRoleBinding GET /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_readNamespacedRole GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_readNamespacedRoleBinding GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_replaceClusterRole PUT /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_replaceClusterRoleBinding PUT /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_replaceNamespacedRole PUT /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1API RbacAuthorizationV1API_replaceNamespacedRoleBinding PUT /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_createClusterRole POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_createClusterRoleBinding POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_createNamespacedRole POST /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_createNamespacedRoleBinding POST /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteClusterRole DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteClusterRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteCollectionClusterRole DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteCollectionClusterRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteCollectionNamespacedRole DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteCollectionNamespacedRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteNamespacedRole DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_deleteNamespacedRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_getAPIResources GET /apis/rbac.authorization.k8s.io/v1alpha1/
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_listClusterRole GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_listClusterRoleBinding GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_listNamespacedRole GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_listNamespacedRoleBinding GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_listRoleBindingForAllNamespaces GET /apis/rbac.authorization.k8s.io/v1alpha1/rolebindings
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_listRoleForAllNamespaces GET /apis/rbac.authorization.k8s.io/v1alpha1/roles
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_patchClusterRole PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_patchClusterRoleBinding PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_patchNamespacedRole PATCH /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_patchNamespacedRoleBinding PATCH /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_readClusterRole GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_readClusterRoleBinding GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_readNamespacedRole GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_readNamespacedRoleBinding GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_replaceClusterRole PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_replaceClusterRoleBinding PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_replaceNamespacedRole PUT /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1API RbacAuthorizationV1alpha1API_replaceNamespacedRoleBinding PUT /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_createClusterRole POST /apis/rbac.authorization.k8s.io/v1beta1/clusterroles
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_createClusterRoleBinding POST /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_createNamespacedRole POST /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_createNamespacedRoleBinding POST /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteClusterRole DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteClusterRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteCollectionClusterRole DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterroles
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteCollectionClusterRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteCollectionNamespacedRole DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteCollectionNamespacedRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteNamespacedRole DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_deleteNamespacedRoleBinding DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_getAPIResources GET /apis/rbac.authorization.k8s.io/v1beta1/
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_listClusterRole GET /apis/rbac.authorization.k8s.io/v1beta1/clusterroles
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_listClusterRoleBinding GET /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_listNamespacedRole GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_listNamespacedRoleBinding GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_listRoleBindingForAllNamespaces GET /apis/rbac.authorization.k8s.io/v1beta1/rolebindings
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_listRoleForAllNamespaces GET /apis/rbac.authorization.k8s.io/v1beta1/roles
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_patchClusterRole PATCH /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_patchClusterRoleBinding PATCH /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_patchNamespacedRole PATCH /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_patchNamespacedRoleBinding PATCH /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_readClusterRole GET /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_readClusterRoleBinding GET /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_readNamespacedRole GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_readNamespacedRoleBinding GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_replaceClusterRole PUT /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_replaceClusterRoleBinding PUT /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_replaceNamespacedRole PUT /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1API RbacAuthorizationV1beta1API_replaceNamespacedRoleBinding PUT /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
SchedulingAPI SchedulingAPI_getAPIGroup GET /apis/scheduling.k8s.io/
SchedulingV1API SchedulingV1API_createPriorityClass POST /apis/scheduling.k8s.io/v1/priorityclasses
SchedulingV1API SchedulingV1API_deleteCollectionPriorityClass DELETE /apis/scheduling.k8s.io/v1/priorityclasses
SchedulingV1API SchedulingV1API_deletePriorityClass DELETE /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1API SchedulingV1API_getAPIResources GET /apis/scheduling.k8s.io/v1/
SchedulingV1API SchedulingV1API_listPriorityClass GET /apis/scheduling.k8s.io/v1/priorityclasses
SchedulingV1API SchedulingV1API_patchPriorityClass PATCH /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1API SchedulingV1API_readPriorityClass GET /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1API SchedulingV1API_replacePriorityClass PUT /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1alpha1API SchedulingV1alpha1API_createPriorityClass POST /apis/scheduling.k8s.io/v1alpha1/priorityclasses
SchedulingV1alpha1API SchedulingV1alpha1API_deleteCollectionPriorityClass DELETE /apis/scheduling.k8s.io/v1alpha1/priorityclasses
SchedulingV1alpha1API SchedulingV1alpha1API_deletePriorityClass DELETE /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
SchedulingV1alpha1API SchedulingV1alpha1API_getAPIResources GET /apis/scheduling.k8s.io/v1alpha1/
SchedulingV1alpha1API SchedulingV1alpha1API_listPriorityClass GET /apis/scheduling.k8s.io/v1alpha1/priorityclasses
SchedulingV1alpha1API SchedulingV1alpha1API_patchPriorityClass PATCH /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
SchedulingV1alpha1API SchedulingV1alpha1API_readPriorityClass GET /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
SchedulingV1alpha1API SchedulingV1alpha1API_replacePriorityClass PUT /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
SchedulingV1beta1API SchedulingV1beta1API_createPriorityClass POST /apis/scheduling.k8s.io/v1beta1/priorityclasses
SchedulingV1beta1API SchedulingV1beta1API_deleteCollectionPriorityClass DELETE /apis/scheduling.k8s.io/v1beta1/priorityclasses
SchedulingV1beta1API SchedulingV1beta1API_deletePriorityClass DELETE /apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}
SchedulingV1beta1API SchedulingV1beta1API_getAPIResources GET /apis/scheduling.k8s.io/v1beta1/
SchedulingV1beta1API SchedulingV1beta1API_listPriorityClass GET /apis/scheduling.k8s.io/v1beta1/priorityclasses
SchedulingV1beta1API SchedulingV1beta1API_patchPriorityClass PATCH /apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}
SchedulingV1beta1API SchedulingV1beta1API_readPriorityClass GET /apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}
SchedulingV1beta1API SchedulingV1beta1API_replacePriorityClass PUT /apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}
SettingsAPI SettingsAPI_getAPIGroup GET /apis/settings.k8s.io/
SettingsV1alpha1API SettingsV1alpha1API_createNamespacedPodPreset POST /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets
SettingsV1alpha1API SettingsV1alpha1API_deleteCollectionNamespacedPodPreset DELETE /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets
SettingsV1alpha1API SettingsV1alpha1API_deleteNamespacedPodPreset DELETE /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
SettingsV1alpha1API SettingsV1alpha1API_getAPIResources GET /apis/settings.k8s.io/v1alpha1/
SettingsV1alpha1API SettingsV1alpha1API_listNamespacedPodPreset GET /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets
SettingsV1alpha1API SettingsV1alpha1API_listPodPresetForAllNamespaces GET /apis/settings.k8s.io/v1alpha1/podpresets
SettingsV1alpha1API SettingsV1alpha1API_patchNamespacedPodPreset PATCH /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
SettingsV1alpha1API SettingsV1alpha1API_readNamespacedPodPreset GET /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
SettingsV1alpha1API SettingsV1alpha1API_replaceNamespacedPodPreset PUT /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
StorageAPI StorageAPI_getAPIGroup GET /apis/storage.k8s.io/
StorageV1API StorageV1API_createCSINode POST /apis/storage.k8s.io/v1/csinodes
StorageV1API StorageV1API_createStorageClass POST /apis/storage.k8s.io/v1/storageclasses
StorageV1API StorageV1API_createVolumeAttachment POST /apis/storage.k8s.io/v1/volumeattachments
StorageV1API StorageV1API_deleteCSINode DELETE /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1API StorageV1API_deleteCollectionCSINode DELETE /apis/storage.k8s.io/v1/csinodes
StorageV1API StorageV1API_deleteCollectionStorageClass DELETE /apis/storage.k8s.io/v1/storageclasses
StorageV1API StorageV1API_deleteCollectionVolumeAttachment DELETE /apis/storage.k8s.io/v1/volumeattachments
StorageV1API StorageV1API_deleteStorageClass DELETE /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1API StorageV1API_deleteVolumeAttachment DELETE /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1API StorageV1API_getAPIResources GET /apis/storage.k8s.io/v1/
StorageV1API StorageV1API_listCSINode GET /apis/storage.k8s.io/v1/csinodes
StorageV1API StorageV1API_listStorageClass GET /apis/storage.k8s.io/v1/storageclasses
StorageV1API StorageV1API_listVolumeAttachment GET /apis/storage.k8s.io/v1/volumeattachments
StorageV1API StorageV1API_patchCSINode PATCH /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1API StorageV1API_patchStorageClass PATCH /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1API StorageV1API_patchVolumeAttachment PATCH /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1API StorageV1API_patchVolumeAttachmentStatus PATCH /apis/storage.k8s.io/v1/volumeattachments/{name}/status
StorageV1API StorageV1API_readCSINode GET /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1API StorageV1API_readStorageClass GET /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1API StorageV1API_readVolumeAttachment GET /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1API StorageV1API_readVolumeAttachmentStatus GET /apis/storage.k8s.io/v1/volumeattachments/{name}/status
StorageV1API StorageV1API_replaceCSINode PUT /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1API StorageV1API_replaceStorageClass PUT /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1API StorageV1API_replaceVolumeAttachment PUT /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1API StorageV1API_replaceVolumeAttachmentStatus PUT /apis/storage.k8s.io/v1/volumeattachments/{name}/status
StorageV1alpha1API StorageV1alpha1API_createVolumeAttachment POST /apis/storage.k8s.io/v1alpha1/volumeattachments
StorageV1alpha1API StorageV1alpha1API_deleteCollectionVolumeAttachment DELETE /apis/storage.k8s.io/v1alpha1/volumeattachments
StorageV1alpha1API StorageV1alpha1API_deleteVolumeAttachment DELETE /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1alpha1API StorageV1alpha1API_getAPIResources GET /apis/storage.k8s.io/v1alpha1/
StorageV1alpha1API StorageV1alpha1API_listVolumeAttachment GET /apis/storage.k8s.io/v1alpha1/volumeattachments
StorageV1alpha1API StorageV1alpha1API_patchVolumeAttachment PATCH /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1alpha1API StorageV1alpha1API_readVolumeAttachment GET /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1alpha1API StorageV1alpha1API_replaceVolumeAttachment PUT /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1beta1API StorageV1beta1API_createCSIDriver POST /apis/storage.k8s.io/v1beta1/csidrivers
StorageV1beta1API StorageV1beta1API_createCSINode POST /apis/storage.k8s.io/v1beta1/csinodes
StorageV1beta1API StorageV1beta1API_createStorageClass POST /apis/storage.k8s.io/v1beta1/storageclasses
StorageV1beta1API StorageV1beta1API_createVolumeAttachment POST /apis/storage.k8s.io/v1beta1/volumeattachments
StorageV1beta1API StorageV1beta1API_deleteCSIDriver DELETE /apis/storage.k8s.io/v1beta1/csidrivers/{name}
StorageV1beta1API StorageV1beta1API_deleteCSINode DELETE /apis/storage.k8s.io/v1beta1/csinodes/{name}
StorageV1beta1API StorageV1beta1API_deleteCollectionCSIDriver DELETE /apis/storage.k8s.io/v1beta1/csidrivers
StorageV1beta1API StorageV1beta1API_deleteCollectionCSINode DELETE /apis/storage.k8s.io/v1beta1/csinodes
StorageV1beta1API StorageV1beta1API_deleteCollectionStorageClass DELETE /apis/storage.k8s.io/v1beta1/storageclasses
StorageV1beta1API StorageV1beta1API_deleteCollectionVolumeAttachment DELETE /apis/storage.k8s.io/v1beta1/volumeattachments
StorageV1beta1API StorageV1beta1API_deleteStorageClass DELETE /apis/storage.k8s.io/v1beta1/storageclasses/{name}
StorageV1beta1API StorageV1beta1API_deleteVolumeAttachment DELETE /apis/storage.k8s.io/v1beta1/volumeattachments/{name}
StorageV1beta1API StorageV1beta1API_getAPIResources GET /apis/storage.k8s.io/v1beta1/
StorageV1beta1API StorageV1beta1API_listCSIDriver GET /apis/storage.k8s.io/v1beta1/csidrivers
StorageV1beta1API StorageV1beta1API_listCSINode GET /apis/storage.k8s.io/v1beta1/csinodes
StorageV1beta1API StorageV1beta1API_listStorageClass GET /apis/storage.k8s.io/v1beta1/storageclasses
StorageV1beta1API StorageV1beta1API_listVolumeAttachment GET /apis/storage.k8s.io/v1beta1/volumeattachments
StorageV1beta1API StorageV1beta1API_patchCSIDriver PATCH /apis/storage.k8s.io/v1beta1/csidrivers/{name}
StorageV1beta1API StorageV1beta1API_patchCSINode PATCH /apis/storage.k8s.io/v1beta1/csinodes/{name}
StorageV1beta1API StorageV1beta1API_patchStorageClass PATCH /apis/storage.k8s.io/v1beta1/storageclasses/{name}
StorageV1beta1API StorageV1beta1API_patchVolumeAttachment PATCH /apis/storage.k8s.io/v1beta1/volumeattachments/{name}
StorageV1beta1API StorageV1beta1API_readCSIDriver GET /apis/storage.k8s.io/v1beta1/csidrivers/{name}
StorageV1beta1API StorageV1beta1API_readCSINode GET /apis/storage.k8s.io/v1beta1/csinodes/{name}
StorageV1beta1API StorageV1beta1API_readStorageClass GET /apis/storage.k8s.io/v1beta1/storageclasses/{name}
StorageV1beta1API StorageV1beta1API_readVolumeAttachment GET /apis/storage.k8s.io/v1beta1/volumeattachments/{name}
StorageV1beta1API StorageV1beta1API_replaceCSIDriver PUT /apis/storage.k8s.io/v1beta1/csidrivers/{name}
StorageV1beta1API StorageV1beta1API_replaceCSINode PUT /apis/storage.k8s.io/v1beta1/csinodes/{name}
StorageV1beta1API StorageV1beta1API_replaceStorageClass PUT /apis/storage.k8s.io/v1beta1/storageclasses/{name}
StorageV1beta1API StorageV1beta1API_replaceVolumeAttachment PUT /apis/storage.k8s.io/v1beta1/volumeattachments/{name}
VersionAPI VersionAPI_getCode GET /version/

Documentation for Models

Documentation for Authorization

BearerToken

  • Type: API key

  • API key parameter name: authorization

  • Location: HTTP header

Author