From 117cceb5377049d525c0c6dcb290bcd3cc1ab205 Mon Sep 17 00:00:00 2001 From: mbohlool Date: Wed, 9 Nov 2016 14:05:11 -0800 Subject: [PATCH] Add generation preprocess step to make OperationIDs simpler --- GEN_README.md | 846 ------------------------------------ README.md | 847 ++++++++++++++++++++++++++++++++++++- README.prefix | 38 ++ scripts/ROOT_README.md | 23 - scripts/generate.sh | 11 +- scripts/preprocess_spec.py | 51 +++ 6 files changed, 943 insertions(+), 873 deletions(-) delete mode 100644 GEN_README.md create mode 100644 README.prefix delete mode 100644 scripts/ROOT_README.md create mode 100644 scripts/preprocess_spec.py diff --git a/GEN_README.md b/GEN_README.md deleted file mode 100644 index c796fd005..000000000 --- a/GEN_README.md +++ /dev/null @@ -1,846 +0,0 @@ -# k8sclient -No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) - -This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - -- API version: unversioned -- Package version: 1.0.0 -- Build package: class io.swagger.codegen.languages.PythonClientCodegen - -## Requirements. - -Python 2.7 and 3.4+ - -## Installation & Usage -### pip install - -If the python package is hosted on Github, you can install directly from Github - -```sh -pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git -``` -(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`) - -Then import the package: -```python -import k8sclient -``` - -### Setuptools - -Install via [Setuptools](http://pypi.python.org/pypi/setuptools). - -```sh -python setup.py install --user -``` -(or `sudo python setup.py install` to install the package for all users) - -Then import the package: -```python -import k8sclient -``` - -## Getting Started - -Please follow the [installation procedure](#installation--usage) and then run the following: - -```python -from __future__ import print_function -import time -import k8sclient -from k8sclient.rest import ApiException -from pprint import pprint - -# Configure API key authorization: BearerToken -k8sclient.configuration.api_key['authorization'] = 'YOUR_API_KEY' -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# k8sclient.configuration.api_key_prefix['authorization'] = 'Bearer' -# create an instance of the API class -api_instance = k8sclient.ApisApi() - -try: - api_response = api_instance.get_api_versions() - pprint(api_response) -except ApiException as e: - print("Exception when calling ApisApi->get_api_versions: %s\n" % e) - -``` - -## Documentation for API Endpoints - -All URIs are relative to *https://localhost* - -Class | Method | HTTP request | Description ------------- | ------------- | ------------- | ------------- -*ApisApi* | [**get_api_versions**](docs/ApisApi.md#get_api_versions) | **GET** /apis/ | -*AppsApi* | [**get_apps_api_group**](docs/AppsApi.md#get_apps_api_group) | **GET** /apis/apps/ | -*AppsV1alpha1Api* | [**create_apps_v1alpha1_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#create_apps_v1alpha1_namespaced_stateful_set) | **POST** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets | -*AppsV1alpha1Api* | [**delete_apps_v1alpha1_collection_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#delete_apps_v1alpha1_collection_namespaced_stateful_set) | **DELETE** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets | -*AppsV1alpha1Api* | [**delete_apps_v1alpha1_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#delete_apps_v1alpha1_namespaced_stateful_set) | **DELETE** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name} | -*AppsV1alpha1Api* | [**get_apps_v1alpha1_api_resources**](docs/AppsV1alpha1Api.md#get_apps_v1alpha1_api_resources) | **GET** /apis/apps/v1alpha1/ | -*AppsV1alpha1Api* | [**list_apps_v1alpha1_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#list_apps_v1alpha1_namespaced_stateful_set) | **GET** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets | -*AppsV1alpha1Api* | [**list_apps_v1alpha1_stateful_set_for_all_namespaces**](docs/AppsV1alpha1Api.md#list_apps_v1alpha1_stateful_set_for_all_namespaces) | **GET** /apis/apps/v1alpha1/statefulsets | -*AppsV1alpha1Api* | [**patch_apps_v1alpha1_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#patch_apps_v1alpha1_namespaced_stateful_set) | **PATCH** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name} | -*AppsV1alpha1Api* | [**patch_apps_v1alpha1_namespaced_stateful_set_status**](docs/AppsV1alpha1Api.md#patch_apps_v1alpha1_namespaced_stateful_set_status) | **PATCH** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name}/status | -*AppsV1alpha1Api* | [**read_apps_v1alpha1_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#read_apps_v1alpha1_namespaced_stateful_set) | **GET** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name} | -*AppsV1alpha1Api* | [**read_apps_v1alpha1_namespaced_stateful_set_status**](docs/AppsV1alpha1Api.md#read_apps_v1alpha1_namespaced_stateful_set_status) | **GET** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name}/status | -*AppsV1alpha1Api* | [**replace_apps_v1alpha1_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#replace_apps_v1alpha1_namespaced_stateful_set) | **PUT** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name} | -*AppsV1alpha1Api* | [**replace_apps_v1alpha1_namespaced_stateful_set_status**](docs/AppsV1alpha1Api.md#replace_apps_v1alpha1_namespaced_stateful_set_status) | **PUT** /apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name}/status | -*AppsV1alpha1Api* | [**watch_apps_v1alpha1_namespaced_stateful_set**](docs/AppsV1alpha1Api.md#watch_apps_v1alpha1_namespaced_stateful_set) | **GET** /apis/apps/v1alpha1/watch/namespaces/{namespace}/statefulsets/{name} | -*AppsV1alpha1Api* | [**watch_apps_v1alpha1_namespaced_stateful_set_list**](docs/AppsV1alpha1Api.md#watch_apps_v1alpha1_namespaced_stateful_set_list) | **GET** /apis/apps/v1alpha1/watch/namespaces/{namespace}/statefulsets | -*AppsV1alpha1Api* | [**watch_apps_v1alpha1_stateful_set_list_for_all_namespaces**](docs/AppsV1alpha1Api.md#watch_apps_v1alpha1_stateful_set_list_for_all_namespaces) | **GET** /apis/apps/v1alpha1/watch/statefulsets | -*AuthenticationApi* | [**get_authentication_api_group**](docs/AuthenticationApi.md#get_authentication_api_group) | **GET** /apis/authentication.k8s.io/ | -*AuthenticationV1beta1Api* | [**create_authentication_v1beta1_token_review**](docs/AuthenticationV1beta1Api.md#create_authentication_v1beta1_token_review) | **POST** /apis/authentication.k8s.io/v1beta1/tokenreviews | -*AuthenticationV1beta1Api* | [**get_authentication_v1beta1_api_resources**](docs/AuthenticationV1beta1Api.md#get_authentication_v1beta1_api_resources) | **GET** /apis/authentication.k8s.io/v1beta1/ | -*AuthorizationApi* | [**get_authorization_api_group**](docs/AuthorizationApi.md#get_authorization_api_group) | **GET** /apis/authorization.k8s.io/ | -*AuthorizationV1beta1Api* | [**create_authorization_v1beta1_namespaced_local_subject_access_review**](docs/AuthorizationV1beta1Api.md#create_authorization_v1beta1_namespaced_local_subject_access_review) | **POST** /apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews | -*AuthorizationV1beta1Api* | [**create_authorization_v1beta1_self_subject_access_review**](docs/AuthorizationV1beta1Api.md#create_authorization_v1beta1_self_subject_access_review) | **POST** /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews | -*AuthorizationV1beta1Api* | [**create_authorization_v1beta1_subject_access_review**](docs/AuthorizationV1beta1Api.md#create_authorization_v1beta1_subject_access_review) | **POST** /apis/authorization.k8s.io/v1beta1/subjectaccessreviews | -*AuthorizationV1beta1Api* | [**get_authorization_v1beta1_api_resources**](docs/AuthorizationV1beta1Api.md#get_authorization_v1beta1_api_resources) | **GET** /apis/authorization.k8s.io/v1beta1/ | -*AutoscalingApi* | [**get_autoscaling_api_group**](docs/AutoscalingApi.md#get_autoscaling_api_group) | **GET** /apis/autoscaling/ | -*AutoscalingV1Api* | [**create_autoscaling_v1_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#create_autoscaling_v1_namespaced_horizontal_pod_autoscaler) | **POST** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers | -*AutoscalingV1Api* | [**delete_autoscaling_v1_collection_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#delete_autoscaling_v1_collection_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers | -*AutoscalingV1Api* | [**delete_autoscaling_v1_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#delete_autoscaling_v1_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*AutoscalingV1Api* | [**get_autoscaling_v1_api_resources**](docs/AutoscalingV1Api.md#get_autoscaling_v1_api_resources) | **GET** /apis/autoscaling/v1/ | -*AutoscalingV1Api* | [**list_autoscaling_v1_horizontal_pod_autoscaler_for_all_namespaces**](docs/AutoscalingV1Api.md#list_autoscaling_v1_horizontal_pod_autoscaler_for_all_namespaces) | **GET** /apis/autoscaling/v1/horizontalpodautoscalers | -*AutoscalingV1Api* | [**list_autoscaling_v1_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#list_autoscaling_v1_namespaced_horizontal_pod_autoscaler) | **GET** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers | -*AutoscalingV1Api* | [**patch_autoscaling_v1_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#patch_autoscaling_v1_namespaced_horizontal_pod_autoscaler) | **PATCH** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*AutoscalingV1Api* | [**patch_autoscaling_v1_namespaced_horizontal_pod_autoscaler_status**](docs/AutoscalingV1Api.md#patch_autoscaling_v1_namespaced_horizontal_pod_autoscaler_status) | **PATCH** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | -*AutoscalingV1Api* | [**read_autoscaling_v1_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#read_autoscaling_v1_namespaced_horizontal_pod_autoscaler) | **GET** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*AutoscalingV1Api* | [**read_autoscaling_v1_namespaced_horizontal_pod_autoscaler_status**](docs/AutoscalingV1Api.md#read_autoscaling_v1_namespaced_horizontal_pod_autoscaler_status) | **GET** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | -*AutoscalingV1Api* | [**replace_autoscaling_v1_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#replace_autoscaling_v1_namespaced_horizontal_pod_autoscaler) | **PUT** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*AutoscalingV1Api* | [**replace_autoscaling_v1_namespaced_horizontal_pod_autoscaler_status**](docs/AutoscalingV1Api.md#replace_autoscaling_v1_namespaced_horizontal_pod_autoscaler_status) | **PUT** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | -*AutoscalingV1Api* | [**watch_autoscaling_v1_horizontal_pod_autoscaler_list_for_all_namespaces**](docs/AutoscalingV1Api.md#watch_autoscaling_v1_horizontal_pod_autoscaler_list_for_all_namespaces) | **GET** /apis/autoscaling/v1/watch/horizontalpodautoscalers | -*AutoscalingV1Api* | [**watch_autoscaling_v1_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#watch_autoscaling_v1_namespaced_horizontal_pod_autoscaler) | **GET** /apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*AutoscalingV1Api* | [**watch_autoscaling_v1_namespaced_horizontal_pod_autoscaler_list**](docs/AutoscalingV1Api.md#watch_autoscaling_v1_namespaced_horizontal_pod_autoscaler_list) | **GET** /apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers | -*BatchApi* | [**get_batch_api_group**](docs/BatchApi.md#get_batch_api_group) | **GET** /apis/batch/ | -*BatchV1Api* | [**create_batch_v1_namespaced_job**](docs/BatchV1Api.md#create_batch_v1_namespaced_job) | **POST** /apis/batch/v1/namespaces/{namespace}/jobs | -*BatchV1Api* | [**delete_batch_v1_collection_namespaced_job**](docs/BatchV1Api.md#delete_batch_v1_collection_namespaced_job) | **DELETE** /apis/batch/v1/namespaces/{namespace}/jobs | -*BatchV1Api* | [**delete_batch_v1_namespaced_job**](docs/BatchV1Api.md#delete_batch_v1_namespaced_job) | **DELETE** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | -*BatchV1Api* | [**get_batch_v1_api_resources**](docs/BatchV1Api.md#get_batch_v1_api_resources) | **GET** /apis/batch/v1/ | -*BatchV1Api* | [**list_batch_v1_job_for_all_namespaces**](docs/BatchV1Api.md#list_batch_v1_job_for_all_namespaces) | **GET** /apis/batch/v1/jobs | -*BatchV1Api* | [**list_batch_v1_namespaced_job**](docs/BatchV1Api.md#list_batch_v1_namespaced_job) | **GET** /apis/batch/v1/namespaces/{namespace}/jobs | -*BatchV1Api* | [**patch_batch_v1_namespaced_job**](docs/BatchV1Api.md#patch_batch_v1_namespaced_job) | **PATCH** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | -*BatchV1Api* | [**patch_batch_v1_namespaced_job_status**](docs/BatchV1Api.md#patch_batch_v1_namespaced_job_status) | **PATCH** /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status | -*BatchV1Api* | [**read_batch_v1_namespaced_job**](docs/BatchV1Api.md#read_batch_v1_namespaced_job) | **GET** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | -*BatchV1Api* | [**read_batch_v1_namespaced_job_status**](docs/BatchV1Api.md#read_batch_v1_namespaced_job_status) | **GET** /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status | -*BatchV1Api* | [**replace_batch_v1_namespaced_job**](docs/BatchV1Api.md#replace_batch_v1_namespaced_job) | **PUT** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | -*BatchV1Api* | [**replace_batch_v1_namespaced_job_status**](docs/BatchV1Api.md#replace_batch_v1_namespaced_job_status) | **PUT** /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status | -*BatchV1Api* | [**watch_batch_v1_job_list_for_all_namespaces**](docs/BatchV1Api.md#watch_batch_v1_job_list_for_all_namespaces) | **GET** /apis/batch/v1/watch/jobs | -*BatchV1Api* | [**watch_batch_v1_namespaced_job**](docs/BatchV1Api.md#watch_batch_v1_namespaced_job) | **GET** /apis/batch/v1/watch/namespaces/{namespace}/jobs/{name} | -*BatchV1Api* | [**watch_batch_v1_namespaced_job_list**](docs/BatchV1Api.md#watch_batch_v1_namespaced_job_list) | **GET** /apis/batch/v1/watch/namespaces/{namespace}/jobs | -*BatchV2alpha1Api* | [**get_batch_v2alpha1_api_resources**](docs/BatchV2alpha1Api.md#get_batch_v2alpha1_api_resources) | **GET** /apis/batch/v2alpha1/ | -*CertificatesApi* | [**get_certificates_api_group**](docs/CertificatesApi.md#get_certificates_api_group) | **GET** /apis/certificates.k8s.io/ | -*CertificatesV1alpha1Api* | [**create_certificates_v1alpha1_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#create_certificates_v1alpha1_certificate_signing_request) | **POST** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | -*CertificatesV1alpha1Api* | [**delete_certificates_v1alpha1_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#delete_certificates_v1alpha1_certificate_signing_request) | **DELETE** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | -*CertificatesV1alpha1Api* | [**delete_certificates_v1alpha1_collection_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#delete_certificates_v1alpha1_collection_certificate_signing_request) | **DELETE** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | -*CertificatesV1alpha1Api* | [**get_certificates_v1alpha1_api_resources**](docs/CertificatesV1alpha1Api.md#get_certificates_v1alpha1_api_resources) | **GET** /apis/certificates.k8s.io/v1alpha1/ | -*CertificatesV1alpha1Api* | [**list_certificates_v1alpha1_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#list_certificates_v1alpha1_certificate_signing_request) | **GET** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | -*CertificatesV1alpha1Api* | [**patch_certificates_v1alpha1_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#patch_certificates_v1alpha1_certificate_signing_request) | **PATCH** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | -*CertificatesV1alpha1Api* | [**read_certificates_v1alpha1_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#read_certificates_v1alpha1_certificate_signing_request) | **GET** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | -*CertificatesV1alpha1Api* | [**replace_certificates_v1alpha1_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#replace_certificates_v1alpha1_certificate_signing_request) | **PUT** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | -*CertificatesV1alpha1Api* | [**replace_certificates_v1alpha1_certificate_signing_request_approval**](docs/CertificatesV1alpha1Api.md#replace_certificates_v1alpha1_certificate_signing_request_approval) | **PUT** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/approval | -*CertificatesV1alpha1Api* | [**replace_certificates_v1alpha1_certificate_signing_request_status**](docs/CertificatesV1alpha1Api.md#replace_certificates_v1alpha1_certificate_signing_request_status) | **PUT** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status | -*CertificatesV1alpha1Api* | [**watch_certificates_v1alpha1_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#watch_certificates_v1alpha1_certificate_signing_request) | **GET** /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests/{name} | -*CertificatesV1alpha1Api* | [**watch_certificates_v1alpha1_certificate_signing_request_list**](docs/CertificatesV1alpha1Api.md#watch_certificates_v1alpha1_certificate_signing_request_list) | **GET** /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests | -*CoreApi* | [**get_core_api_versions**](docs/CoreApi.md#get_core_api_versions) | **GET** /api/ | -*CoreV1Api* | [**connect_core_v1_delete_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_core_v1_delete_namespaced_pod_proxy) | **DELETE** /api/v1/namespaces/{namespace}/pods/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_delete_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_delete_namespaced_pod_proxy_with_path) | **DELETE** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_delete_namespaced_service_proxy**](docs/CoreV1Api.md#connect_core_v1_delete_namespaced_service_proxy) | **DELETE** /api/v1/namespaces/{namespace}/services/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_delete_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_delete_namespaced_service_proxy_with_path) | **DELETE** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_delete_node_proxy**](docs/CoreV1Api.md#connect_core_v1_delete_node_proxy) | **DELETE** /api/v1/nodes/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_delete_node_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_delete_node_proxy_with_path) | **DELETE** /api/v1/nodes/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_get_namespaced_pod_attach**](docs/CoreV1Api.md#connect_core_v1_get_namespaced_pod_attach) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/attach | -*CoreV1Api* | [**connect_core_v1_get_namespaced_pod_exec**](docs/CoreV1Api.md#connect_core_v1_get_namespaced_pod_exec) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/exec | -*CoreV1Api* | [**connect_core_v1_get_namespaced_pod_portforward**](docs/CoreV1Api.md#connect_core_v1_get_namespaced_pod_portforward) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/portforward | -*CoreV1Api* | [**connect_core_v1_get_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_core_v1_get_namespaced_pod_proxy) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_get_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_get_namespaced_pod_proxy_with_path) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_get_namespaced_service_proxy**](docs/CoreV1Api.md#connect_core_v1_get_namespaced_service_proxy) | **GET** /api/v1/namespaces/{namespace}/services/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_get_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_get_namespaced_service_proxy_with_path) | **GET** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_get_node_proxy**](docs/CoreV1Api.md#connect_core_v1_get_node_proxy) | **GET** /api/v1/nodes/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_get_node_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_get_node_proxy_with_path) | **GET** /api/v1/nodes/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_head_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_core_v1_head_namespaced_pod_proxy) | **HEAD** /api/v1/namespaces/{namespace}/pods/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_head_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_head_namespaced_pod_proxy_with_path) | **HEAD** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_head_namespaced_service_proxy**](docs/CoreV1Api.md#connect_core_v1_head_namespaced_service_proxy) | **HEAD** /api/v1/namespaces/{namespace}/services/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_head_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_head_namespaced_service_proxy_with_path) | **HEAD** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_head_node_proxy**](docs/CoreV1Api.md#connect_core_v1_head_node_proxy) | **HEAD** /api/v1/nodes/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_head_node_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_head_node_proxy_with_path) | **HEAD** /api/v1/nodes/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_options_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_core_v1_options_namespaced_pod_proxy) | **OPTIONS** /api/v1/namespaces/{namespace}/pods/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_options_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_options_namespaced_pod_proxy_with_path) | **OPTIONS** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_options_namespaced_service_proxy**](docs/CoreV1Api.md#connect_core_v1_options_namespaced_service_proxy) | **OPTIONS** /api/v1/namespaces/{namespace}/services/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_options_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_options_namespaced_service_proxy_with_path) | **OPTIONS** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_options_node_proxy**](docs/CoreV1Api.md#connect_core_v1_options_node_proxy) | **OPTIONS** /api/v1/nodes/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_options_node_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_options_node_proxy_with_path) | **OPTIONS** /api/v1/nodes/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_post_namespaced_pod_attach**](docs/CoreV1Api.md#connect_core_v1_post_namespaced_pod_attach) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/attach | -*CoreV1Api* | [**connect_core_v1_post_namespaced_pod_exec**](docs/CoreV1Api.md#connect_core_v1_post_namespaced_pod_exec) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/exec | -*CoreV1Api* | [**connect_core_v1_post_namespaced_pod_portforward**](docs/CoreV1Api.md#connect_core_v1_post_namespaced_pod_portforward) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/portforward | -*CoreV1Api* | [**connect_core_v1_post_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_core_v1_post_namespaced_pod_proxy) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_post_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_post_namespaced_pod_proxy_with_path) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_post_namespaced_service_proxy**](docs/CoreV1Api.md#connect_core_v1_post_namespaced_service_proxy) | **POST** /api/v1/namespaces/{namespace}/services/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_post_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_post_namespaced_service_proxy_with_path) | **POST** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_post_node_proxy**](docs/CoreV1Api.md#connect_core_v1_post_node_proxy) | **POST** /api/v1/nodes/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_post_node_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_post_node_proxy_with_path) | **POST** /api/v1/nodes/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_put_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_core_v1_put_namespaced_pod_proxy) | **PUT** /api/v1/namespaces/{namespace}/pods/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_put_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_put_namespaced_pod_proxy_with_path) | **PUT** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_put_namespaced_service_proxy**](docs/CoreV1Api.md#connect_core_v1_put_namespaced_service_proxy) | **PUT** /api/v1/namespaces/{namespace}/services/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_put_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_put_namespaced_service_proxy_with_path) | **PUT** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | -*CoreV1Api* | [**connect_core_v1_put_node_proxy**](docs/CoreV1Api.md#connect_core_v1_put_node_proxy) | **PUT** /api/v1/nodes/{name}/proxy | -*CoreV1Api* | [**connect_core_v1_put_node_proxy_with_path**](docs/CoreV1Api.md#connect_core_v1_put_node_proxy_with_path) | **PUT** /api/v1/nodes/{name}/proxy/{path} | -*CoreV1Api* | [**create_core_v1_namespace**](docs/CoreV1Api.md#create_core_v1_namespace) | **POST** /api/v1/namespaces | -*CoreV1Api* | [**create_core_v1_namespaced_binding**](docs/CoreV1Api.md#create_core_v1_namespaced_binding) | **POST** /api/v1/namespaces/{namespace}/bindings | -*CoreV1Api* | [**create_core_v1_namespaced_binding_binding**](docs/CoreV1Api.md#create_core_v1_namespaced_binding_binding) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/binding | -*CoreV1Api* | [**create_core_v1_namespaced_config_map**](docs/CoreV1Api.md#create_core_v1_namespaced_config_map) | **POST** /api/v1/namespaces/{namespace}/configmaps | -*CoreV1Api* | [**create_core_v1_namespaced_endpoints**](docs/CoreV1Api.md#create_core_v1_namespaced_endpoints) | **POST** /api/v1/namespaces/{namespace}/endpoints | -*CoreV1Api* | [**create_core_v1_namespaced_event**](docs/CoreV1Api.md#create_core_v1_namespaced_event) | **POST** /api/v1/namespaces/{namespace}/events | -*CoreV1Api* | [**create_core_v1_namespaced_eviction_eviction**](docs/CoreV1Api.md#create_core_v1_namespaced_eviction_eviction) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/eviction | -*CoreV1Api* | [**create_core_v1_namespaced_limit_range**](docs/CoreV1Api.md#create_core_v1_namespaced_limit_range) | **POST** /api/v1/namespaces/{namespace}/limitranges | -*CoreV1Api* | [**create_core_v1_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#create_core_v1_namespaced_persistent_volume_claim) | **POST** /api/v1/namespaces/{namespace}/persistentvolumeclaims | -*CoreV1Api* | [**create_core_v1_namespaced_pod**](docs/CoreV1Api.md#create_core_v1_namespaced_pod) | **POST** /api/v1/namespaces/{namespace}/pods | -*CoreV1Api* | [**create_core_v1_namespaced_pod_template**](docs/CoreV1Api.md#create_core_v1_namespaced_pod_template) | **POST** /api/v1/namespaces/{namespace}/podtemplates | -*CoreV1Api* | [**create_core_v1_namespaced_replication_controller**](docs/CoreV1Api.md#create_core_v1_namespaced_replication_controller) | **POST** /api/v1/namespaces/{namespace}/replicationcontrollers | -*CoreV1Api* | [**create_core_v1_namespaced_resource_quota**](docs/CoreV1Api.md#create_core_v1_namespaced_resource_quota) | **POST** /api/v1/namespaces/{namespace}/resourcequotas | -*CoreV1Api* | [**create_core_v1_namespaced_secret**](docs/CoreV1Api.md#create_core_v1_namespaced_secret) | **POST** /api/v1/namespaces/{namespace}/secrets | -*CoreV1Api* | [**create_core_v1_namespaced_service**](docs/CoreV1Api.md#create_core_v1_namespaced_service) | **POST** /api/v1/namespaces/{namespace}/services | -*CoreV1Api* | [**create_core_v1_namespaced_service_account**](docs/CoreV1Api.md#create_core_v1_namespaced_service_account) | **POST** /api/v1/namespaces/{namespace}/serviceaccounts | -*CoreV1Api* | [**create_core_v1_node**](docs/CoreV1Api.md#create_core_v1_node) | **POST** /api/v1/nodes | -*CoreV1Api* | [**create_core_v1_persistent_volume**](docs/CoreV1Api.md#create_core_v1_persistent_volume) | **POST** /api/v1/persistentvolumes | -*CoreV1Api* | [**delete_core_v1_collection_namespace**](docs/CoreV1Api.md#delete_core_v1_collection_namespace) | **DELETE** /api/v1/namespaces | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_config_map**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_config_map) | **DELETE** /api/v1/namespaces/{namespace}/configmaps | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_endpoints**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_endpoints) | **DELETE** /api/v1/namespaces/{namespace}/endpoints | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_event**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_event) | **DELETE** /api/v1/namespaces/{namespace}/events | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_limit_range**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_limit_range) | **DELETE** /api/v1/namespaces/{namespace}/limitranges | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_persistent_volume_claim) | **DELETE** /api/v1/namespaces/{namespace}/persistentvolumeclaims | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_pod**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_pod) | **DELETE** /api/v1/namespaces/{namespace}/pods | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_pod_template**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_pod_template) | **DELETE** /api/v1/namespaces/{namespace}/podtemplates | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_replication_controller**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_replication_controller) | **DELETE** /api/v1/namespaces/{namespace}/replicationcontrollers | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_resource_quota**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_resource_quota) | **DELETE** /api/v1/namespaces/{namespace}/resourcequotas | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_secret**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_secret) | **DELETE** /api/v1/namespaces/{namespace}/secrets | -*CoreV1Api* | [**delete_core_v1_collection_namespaced_service_account**](docs/CoreV1Api.md#delete_core_v1_collection_namespaced_service_account) | **DELETE** /api/v1/namespaces/{namespace}/serviceaccounts | -*CoreV1Api* | [**delete_core_v1_collection_node**](docs/CoreV1Api.md#delete_core_v1_collection_node) | **DELETE** /api/v1/nodes | -*CoreV1Api* | [**delete_core_v1_collection_persistent_volume**](docs/CoreV1Api.md#delete_core_v1_collection_persistent_volume) | **DELETE** /api/v1/persistentvolumes | -*CoreV1Api* | [**delete_core_v1_namespace**](docs/CoreV1Api.md#delete_core_v1_namespace) | **DELETE** /api/v1/namespaces/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_config_map**](docs/CoreV1Api.md#delete_core_v1_namespaced_config_map) | **DELETE** /api/v1/namespaces/{namespace}/configmaps/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_endpoints**](docs/CoreV1Api.md#delete_core_v1_namespaced_endpoints) | **DELETE** /api/v1/namespaces/{namespace}/endpoints/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_event**](docs/CoreV1Api.md#delete_core_v1_namespaced_event) | **DELETE** /api/v1/namespaces/{namespace}/events/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_limit_range**](docs/CoreV1Api.md#delete_core_v1_namespaced_limit_range) | **DELETE** /api/v1/namespaces/{namespace}/limitranges/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#delete_core_v1_namespaced_persistent_volume_claim) | **DELETE** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_pod**](docs/CoreV1Api.md#delete_core_v1_namespaced_pod) | **DELETE** /api/v1/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_pod_template**](docs/CoreV1Api.md#delete_core_v1_namespaced_pod_template) | **DELETE** /api/v1/namespaces/{namespace}/podtemplates/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_replication_controller**](docs/CoreV1Api.md#delete_core_v1_namespaced_replication_controller) | **DELETE** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_resource_quota**](docs/CoreV1Api.md#delete_core_v1_namespaced_resource_quota) | **DELETE** /api/v1/namespaces/{namespace}/resourcequotas/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_secret**](docs/CoreV1Api.md#delete_core_v1_namespaced_secret) | **DELETE** /api/v1/namespaces/{namespace}/secrets/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_service**](docs/CoreV1Api.md#delete_core_v1_namespaced_service) | **DELETE** /api/v1/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**delete_core_v1_namespaced_service_account**](docs/CoreV1Api.md#delete_core_v1_namespaced_service_account) | **DELETE** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | -*CoreV1Api* | [**delete_core_v1_node**](docs/CoreV1Api.md#delete_core_v1_node) | **DELETE** /api/v1/nodes/{name} | -*CoreV1Api* | [**delete_core_v1_persistent_volume**](docs/CoreV1Api.md#delete_core_v1_persistent_volume) | **DELETE** /api/v1/persistentvolumes/{name} | -*CoreV1Api* | [**get_core_v1_api_resources**](docs/CoreV1Api.md#get_core_v1_api_resources) | **GET** /api/v1/ | -*CoreV1Api* | [**list_core_v1_component_status**](docs/CoreV1Api.md#list_core_v1_component_status) | **GET** /api/v1/componentstatuses | -*CoreV1Api* | [**list_core_v1_config_map_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_config_map_for_all_namespaces) | **GET** /api/v1/configmaps | -*CoreV1Api* | [**list_core_v1_endpoints_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_endpoints_for_all_namespaces) | **GET** /api/v1/endpoints | -*CoreV1Api* | [**list_core_v1_event_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_event_for_all_namespaces) | **GET** /api/v1/events | -*CoreV1Api* | [**list_core_v1_limit_range_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_limit_range_for_all_namespaces) | **GET** /api/v1/limitranges | -*CoreV1Api* | [**list_core_v1_namespace**](docs/CoreV1Api.md#list_core_v1_namespace) | **GET** /api/v1/namespaces | -*CoreV1Api* | [**list_core_v1_namespaced_config_map**](docs/CoreV1Api.md#list_core_v1_namespaced_config_map) | **GET** /api/v1/namespaces/{namespace}/configmaps | -*CoreV1Api* | [**list_core_v1_namespaced_endpoints**](docs/CoreV1Api.md#list_core_v1_namespaced_endpoints) | **GET** /api/v1/namespaces/{namespace}/endpoints | -*CoreV1Api* | [**list_core_v1_namespaced_event**](docs/CoreV1Api.md#list_core_v1_namespaced_event) | **GET** /api/v1/namespaces/{namespace}/events | -*CoreV1Api* | [**list_core_v1_namespaced_limit_range**](docs/CoreV1Api.md#list_core_v1_namespaced_limit_range) | **GET** /api/v1/namespaces/{namespace}/limitranges | -*CoreV1Api* | [**list_core_v1_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#list_core_v1_namespaced_persistent_volume_claim) | **GET** /api/v1/namespaces/{namespace}/persistentvolumeclaims | -*CoreV1Api* | [**list_core_v1_namespaced_pod**](docs/CoreV1Api.md#list_core_v1_namespaced_pod) | **GET** /api/v1/namespaces/{namespace}/pods | -*CoreV1Api* | [**list_core_v1_namespaced_pod_template**](docs/CoreV1Api.md#list_core_v1_namespaced_pod_template) | **GET** /api/v1/namespaces/{namespace}/podtemplates | -*CoreV1Api* | [**list_core_v1_namespaced_replication_controller**](docs/CoreV1Api.md#list_core_v1_namespaced_replication_controller) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers | -*CoreV1Api* | [**list_core_v1_namespaced_resource_quota**](docs/CoreV1Api.md#list_core_v1_namespaced_resource_quota) | **GET** /api/v1/namespaces/{namespace}/resourcequotas | -*CoreV1Api* | [**list_core_v1_namespaced_secret**](docs/CoreV1Api.md#list_core_v1_namespaced_secret) | **GET** /api/v1/namespaces/{namespace}/secrets | -*CoreV1Api* | [**list_core_v1_namespaced_service**](docs/CoreV1Api.md#list_core_v1_namespaced_service) | **GET** /api/v1/namespaces/{namespace}/services | -*CoreV1Api* | [**list_core_v1_namespaced_service_account**](docs/CoreV1Api.md#list_core_v1_namespaced_service_account) | **GET** /api/v1/namespaces/{namespace}/serviceaccounts | -*CoreV1Api* | [**list_core_v1_node**](docs/CoreV1Api.md#list_core_v1_node) | **GET** /api/v1/nodes | -*CoreV1Api* | [**list_core_v1_persistent_volume**](docs/CoreV1Api.md#list_core_v1_persistent_volume) | **GET** /api/v1/persistentvolumes | -*CoreV1Api* | [**list_core_v1_persistent_volume_claim_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_persistent_volume_claim_for_all_namespaces) | **GET** /api/v1/persistentvolumeclaims | -*CoreV1Api* | [**list_core_v1_pod_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_pod_for_all_namespaces) | **GET** /api/v1/pods | -*CoreV1Api* | [**list_core_v1_pod_template_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_pod_template_for_all_namespaces) | **GET** /api/v1/podtemplates | -*CoreV1Api* | [**list_core_v1_replication_controller_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_replication_controller_for_all_namespaces) | **GET** /api/v1/replicationcontrollers | -*CoreV1Api* | [**list_core_v1_resource_quota_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_resource_quota_for_all_namespaces) | **GET** /api/v1/resourcequotas | -*CoreV1Api* | [**list_core_v1_secret_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_secret_for_all_namespaces) | **GET** /api/v1/secrets | -*CoreV1Api* | [**list_core_v1_service_account_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_service_account_for_all_namespaces) | **GET** /api/v1/serviceaccounts | -*CoreV1Api* | [**list_core_v1_service_for_all_namespaces**](docs/CoreV1Api.md#list_core_v1_service_for_all_namespaces) | **GET** /api/v1/services | -*CoreV1Api* | [**patch_core_v1_namespace**](docs/CoreV1Api.md#patch_core_v1_namespace) | **PATCH** /api/v1/namespaces/{name} | -*CoreV1Api* | [**patch_core_v1_namespace_status**](docs/CoreV1Api.md#patch_core_v1_namespace_status) | **PATCH** /api/v1/namespaces/{name}/status | -*CoreV1Api* | [**patch_core_v1_namespaced_config_map**](docs/CoreV1Api.md#patch_core_v1_namespaced_config_map) | **PATCH** /api/v1/namespaces/{namespace}/configmaps/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_endpoints**](docs/CoreV1Api.md#patch_core_v1_namespaced_endpoints) | **PATCH** /api/v1/namespaces/{namespace}/endpoints/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_event**](docs/CoreV1Api.md#patch_core_v1_namespaced_event) | **PATCH** /api/v1/namespaces/{namespace}/events/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_limit_range**](docs/CoreV1Api.md#patch_core_v1_namespaced_limit_range) | **PATCH** /api/v1/namespaces/{namespace}/limitranges/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#patch_core_v1_namespaced_persistent_volume_claim) | **PATCH** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_persistent_volume_claim_status**](docs/CoreV1Api.md#patch_core_v1_namespaced_persistent_volume_claim_status) | **PATCH** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status | -*CoreV1Api* | [**patch_core_v1_namespaced_pod**](docs/CoreV1Api.md#patch_core_v1_namespaced_pod) | **PATCH** /api/v1/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_pod_status**](docs/CoreV1Api.md#patch_core_v1_namespaced_pod_status) | **PATCH** /api/v1/namespaces/{namespace}/pods/{name}/status | -*CoreV1Api* | [**patch_core_v1_namespaced_pod_template**](docs/CoreV1Api.md#patch_core_v1_namespaced_pod_template) | **PATCH** /api/v1/namespaces/{namespace}/podtemplates/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_replication_controller**](docs/CoreV1Api.md#patch_core_v1_namespaced_replication_controller) | **PATCH** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_replication_controller_status**](docs/CoreV1Api.md#patch_core_v1_namespaced_replication_controller_status) | **PATCH** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | -*CoreV1Api* | [**patch_core_v1_namespaced_resource_quota**](docs/CoreV1Api.md#patch_core_v1_namespaced_resource_quota) | **PATCH** /api/v1/namespaces/{namespace}/resourcequotas/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_resource_quota_status**](docs/CoreV1Api.md#patch_core_v1_namespaced_resource_quota_status) | **PATCH** /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | -*CoreV1Api* | [**patch_core_v1_namespaced_scale_scale**](docs/CoreV1Api.md#patch_core_v1_namespaced_scale_scale) | **PATCH** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | -*CoreV1Api* | [**patch_core_v1_namespaced_secret**](docs/CoreV1Api.md#patch_core_v1_namespaced_secret) | **PATCH** /api/v1/namespaces/{namespace}/secrets/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_service**](docs/CoreV1Api.md#patch_core_v1_namespaced_service) | **PATCH** /api/v1/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_service_account**](docs/CoreV1Api.md#patch_core_v1_namespaced_service_account) | **PATCH** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | -*CoreV1Api* | [**patch_core_v1_namespaced_service_status**](docs/CoreV1Api.md#patch_core_v1_namespaced_service_status) | **PATCH** /api/v1/namespaces/{namespace}/services/{name}/status | -*CoreV1Api* | [**patch_core_v1_node**](docs/CoreV1Api.md#patch_core_v1_node) | **PATCH** /api/v1/nodes/{name} | -*CoreV1Api* | [**patch_core_v1_node_status**](docs/CoreV1Api.md#patch_core_v1_node_status) | **PATCH** /api/v1/nodes/{name}/status | -*CoreV1Api* | [**patch_core_v1_persistent_volume**](docs/CoreV1Api.md#patch_core_v1_persistent_volume) | **PATCH** /api/v1/persistentvolumes/{name} | -*CoreV1Api* | [**patch_core_v1_persistent_volume_status**](docs/CoreV1Api.md#patch_core_v1_persistent_volume_status) | **PATCH** /api/v1/persistentvolumes/{name}/status | -*CoreV1Api* | [**proxy_core_v1_delete_namespaced_pod**](docs/CoreV1Api.md#proxy_core_v1_delete_namespaced_pod) | **DELETE** /api/v1/proxy/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**proxy_core_v1_delete_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_core_v1_delete_namespaced_pod_with_path) | **DELETE** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_delete_namespaced_service**](docs/CoreV1Api.md#proxy_core_v1_delete_namespaced_service) | **DELETE** /api/v1/proxy/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**proxy_core_v1_delete_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_core_v1_delete_namespaced_service_with_path) | **DELETE** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_delete_node**](docs/CoreV1Api.md#proxy_core_v1_delete_node) | **DELETE** /api/v1/proxy/nodes/{name} | -*CoreV1Api* | [**proxy_core_v1_delete_node_with_path**](docs/CoreV1Api.md#proxy_core_v1_delete_node_with_path) | **DELETE** /api/v1/proxy/nodes/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_get_namespaced_pod**](docs/CoreV1Api.md#proxy_core_v1_get_namespaced_pod) | **GET** /api/v1/proxy/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**proxy_core_v1_get_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_core_v1_get_namespaced_pod_with_path) | **GET** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_get_namespaced_service**](docs/CoreV1Api.md#proxy_core_v1_get_namespaced_service) | **GET** /api/v1/proxy/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**proxy_core_v1_get_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_core_v1_get_namespaced_service_with_path) | **GET** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_get_node**](docs/CoreV1Api.md#proxy_core_v1_get_node) | **GET** /api/v1/proxy/nodes/{name} | -*CoreV1Api* | [**proxy_core_v1_get_node_with_path**](docs/CoreV1Api.md#proxy_core_v1_get_node_with_path) | **GET** /api/v1/proxy/nodes/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_head_namespaced_pod**](docs/CoreV1Api.md#proxy_core_v1_head_namespaced_pod) | **HEAD** /api/v1/proxy/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**proxy_core_v1_head_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_core_v1_head_namespaced_pod_with_path) | **HEAD** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_head_namespaced_service**](docs/CoreV1Api.md#proxy_core_v1_head_namespaced_service) | **HEAD** /api/v1/proxy/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**proxy_core_v1_head_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_core_v1_head_namespaced_service_with_path) | **HEAD** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_head_node**](docs/CoreV1Api.md#proxy_core_v1_head_node) | **HEAD** /api/v1/proxy/nodes/{name} | -*CoreV1Api* | [**proxy_core_v1_head_node_with_path**](docs/CoreV1Api.md#proxy_core_v1_head_node_with_path) | **HEAD** /api/v1/proxy/nodes/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_options_namespaced_pod**](docs/CoreV1Api.md#proxy_core_v1_options_namespaced_pod) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**proxy_core_v1_options_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_core_v1_options_namespaced_pod_with_path) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_options_namespaced_service**](docs/CoreV1Api.md#proxy_core_v1_options_namespaced_service) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**proxy_core_v1_options_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_core_v1_options_namespaced_service_with_path) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_options_node**](docs/CoreV1Api.md#proxy_core_v1_options_node) | **OPTIONS** /api/v1/proxy/nodes/{name} | -*CoreV1Api* | [**proxy_core_v1_options_node_with_path**](docs/CoreV1Api.md#proxy_core_v1_options_node_with_path) | **OPTIONS** /api/v1/proxy/nodes/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_post_namespaced_pod**](docs/CoreV1Api.md#proxy_core_v1_post_namespaced_pod) | **POST** /api/v1/proxy/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**proxy_core_v1_post_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_core_v1_post_namespaced_pod_with_path) | **POST** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_post_namespaced_service**](docs/CoreV1Api.md#proxy_core_v1_post_namespaced_service) | **POST** /api/v1/proxy/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**proxy_core_v1_post_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_core_v1_post_namespaced_service_with_path) | **POST** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_post_node**](docs/CoreV1Api.md#proxy_core_v1_post_node) | **POST** /api/v1/proxy/nodes/{name} | -*CoreV1Api* | [**proxy_core_v1_post_node_with_path**](docs/CoreV1Api.md#proxy_core_v1_post_node_with_path) | **POST** /api/v1/proxy/nodes/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_put_namespaced_pod**](docs/CoreV1Api.md#proxy_core_v1_put_namespaced_pod) | **PUT** /api/v1/proxy/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**proxy_core_v1_put_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_core_v1_put_namespaced_pod_with_path) | **PUT** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_put_namespaced_service**](docs/CoreV1Api.md#proxy_core_v1_put_namespaced_service) | **PUT** /api/v1/proxy/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**proxy_core_v1_put_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_core_v1_put_namespaced_service_with_path) | **PUT** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | -*CoreV1Api* | [**proxy_core_v1_put_node**](docs/CoreV1Api.md#proxy_core_v1_put_node) | **PUT** /api/v1/proxy/nodes/{name} | -*CoreV1Api* | [**proxy_core_v1_put_node_with_path**](docs/CoreV1Api.md#proxy_core_v1_put_node_with_path) | **PUT** /api/v1/proxy/nodes/{name}/{path} | -*CoreV1Api* | [**read_core_v1_component_status**](docs/CoreV1Api.md#read_core_v1_component_status) | **GET** /api/v1/componentstatuses/{name} | -*CoreV1Api* | [**read_core_v1_namespace**](docs/CoreV1Api.md#read_core_v1_namespace) | **GET** /api/v1/namespaces/{name} | -*CoreV1Api* | [**read_core_v1_namespace_status**](docs/CoreV1Api.md#read_core_v1_namespace_status) | **GET** /api/v1/namespaces/{name}/status | -*CoreV1Api* | [**read_core_v1_namespaced_config_map**](docs/CoreV1Api.md#read_core_v1_namespaced_config_map) | **GET** /api/v1/namespaces/{namespace}/configmaps/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_endpoints**](docs/CoreV1Api.md#read_core_v1_namespaced_endpoints) | **GET** /api/v1/namespaces/{namespace}/endpoints/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_event**](docs/CoreV1Api.md#read_core_v1_namespaced_event) | **GET** /api/v1/namespaces/{namespace}/events/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_limit_range**](docs/CoreV1Api.md#read_core_v1_namespaced_limit_range) | **GET** /api/v1/namespaces/{namespace}/limitranges/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#read_core_v1_namespaced_persistent_volume_claim) | **GET** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_persistent_volume_claim_status**](docs/CoreV1Api.md#read_core_v1_namespaced_persistent_volume_claim_status) | **GET** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status | -*CoreV1Api* | [**read_core_v1_namespaced_pod**](docs/CoreV1Api.md#read_core_v1_namespaced_pod) | **GET** /api/v1/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_pod_log**](docs/CoreV1Api.md#read_core_v1_namespaced_pod_log) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/log | -*CoreV1Api* | [**read_core_v1_namespaced_pod_status**](docs/CoreV1Api.md#read_core_v1_namespaced_pod_status) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/status | -*CoreV1Api* | [**read_core_v1_namespaced_pod_template**](docs/CoreV1Api.md#read_core_v1_namespaced_pod_template) | **GET** /api/v1/namespaces/{namespace}/podtemplates/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_replication_controller**](docs/CoreV1Api.md#read_core_v1_namespaced_replication_controller) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_replication_controller_status**](docs/CoreV1Api.md#read_core_v1_namespaced_replication_controller_status) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | -*CoreV1Api* | [**read_core_v1_namespaced_resource_quota**](docs/CoreV1Api.md#read_core_v1_namespaced_resource_quota) | **GET** /api/v1/namespaces/{namespace}/resourcequotas/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_resource_quota_status**](docs/CoreV1Api.md#read_core_v1_namespaced_resource_quota_status) | **GET** /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | -*CoreV1Api* | [**read_core_v1_namespaced_scale_scale**](docs/CoreV1Api.md#read_core_v1_namespaced_scale_scale) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | -*CoreV1Api* | [**read_core_v1_namespaced_secret**](docs/CoreV1Api.md#read_core_v1_namespaced_secret) | **GET** /api/v1/namespaces/{namespace}/secrets/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_service**](docs/CoreV1Api.md#read_core_v1_namespaced_service) | **GET** /api/v1/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_service_account**](docs/CoreV1Api.md#read_core_v1_namespaced_service_account) | **GET** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | -*CoreV1Api* | [**read_core_v1_namespaced_service_status**](docs/CoreV1Api.md#read_core_v1_namespaced_service_status) | **GET** /api/v1/namespaces/{namespace}/services/{name}/status | -*CoreV1Api* | [**read_core_v1_node**](docs/CoreV1Api.md#read_core_v1_node) | **GET** /api/v1/nodes/{name} | -*CoreV1Api* | [**read_core_v1_node_status**](docs/CoreV1Api.md#read_core_v1_node_status) | **GET** /api/v1/nodes/{name}/status | -*CoreV1Api* | [**read_core_v1_persistent_volume**](docs/CoreV1Api.md#read_core_v1_persistent_volume) | **GET** /api/v1/persistentvolumes/{name} | -*CoreV1Api* | [**read_core_v1_persistent_volume_status**](docs/CoreV1Api.md#read_core_v1_persistent_volume_status) | **GET** /api/v1/persistentvolumes/{name}/status | -*CoreV1Api* | [**replace_core_v1_namespace**](docs/CoreV1Api.md#replace_core_v1_namespace) | **PUT** /api/v1/namespaces/{name} | -*CoreV1Api* | [**replace_core_v1_namespace_finalize**](docs/CoreV1Api.md#replace_core_v1_namespace_finalize) | **PUT** /api/v1/namespaces/{name}/finalize | -*CoreV1Api* | [**replace_core_v1_namespace_status**](docs/CoreV1Api.md#replace_core_v1_namespace_status) | **PUT** /api/v1/namespaces/{name}/status | -*CoreV1Api* | [**replace_core_v1_namespaced_config_map**](docs/CoreV1Api.md#replace_core_v1_namespaced_config_map) | **PUT** /api/v1/namespaces/{namespace}/configmaps/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_endpoints**](docs/CoreV1Api.md#replace_core_v1_namespaced_endpoints) | **PUT** /api/v1/namespaces/{namespace}/endpoints/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_event**](docs/CoreV1Api.md#replace_core_v1_namespaced_event) | **PUT** /api/v1/namespaces/{namespace}/events/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_limit_range**](docs/CoreV1Api.md#replace_core_v1_namespaced_limit_range) | **PUT** /api/v1/namespaces/{namespace}/limitranges/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#replace_core_v1_namespaced_persistent_volume_claim) | **PUT** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_persistent_volume_claim_status**](docs/CoreV1Api.md#replace_core_v1_namespaced_persistent_volume_claim_status) | **PUT** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status | -*CoreV1Api* | [**replace_core_v1_namespaced_pod**](docs/CoreV1Api.md#replace_core_v1_namespaced_pod) | **PUT** /api/v1/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_pod_status**](docs/CoreV1Api.md#replace_core_v1_namespaced_pod_status) | **PUT** /api/v1/namespaces/{namespace}/pods/{name}/status | -*CoreV1Api* | [**replace_core_v1_namespaced_pod_template**](docs/CoreV1Api.md#replace_core_v1_namespaced_pod_template) | **PUT** /api/v1/namespaces/{namespace}/podtemplates/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_replication_controller**](docs/CoreV1Api.md#replace_core_v1_namespaced_replication_controller) | **PUT** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_replication_controller_status**](docs/CoreV1Api.md#replace_core_v1_namespaced_replication_controller_status) | **PUT** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | -*CoreV1Api* | [**replace_core_v1_namespaced_resource_quota**](docs/CoreV1Api.md#replace_core_v1_namespaced_resource_quota) | **PUT** /api/v1/namespaces/{namespace}/resourcequotas/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_resource_quota_status**](docs/CoreV1Api.md#replace_core_v1_namespaced_resource_quota_status) | **PUT** /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | -*CoreV1Api* | [**replace_core_v1_namespaced_scale_scale**](docs/CoreV1Api.md#replace_core_v1_namespaced_scale_scale) | **PUT** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | -*CoreV1Api* | [**replace_core_v1_namespaced_secret**](docs/CoreV1Api.md#replace_core_v1_namespaced_secret) | **PUT** /api/v1/namespaces/{namespace}/secrets/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_service**](docs/CoreV1Api.md#replace_core_v1_namespaced_service) | **PUT** /api/v1/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_service_account**](docs/CoreV1Api.md#replace_core_v1_namespaced_service_account) | **PUT** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | -*CoreV1Api* | [**replace_core_v1_namespaced_service_status**](docs/CoreV1Api.md#replace_core_v1_namespaced_service_status) | **PUT** /api/v1/namespaces/{namespace}/services/{name}/status | -*CoreV1Api* | [**replace_core_v1_node**](docs/CoreV1Api.md#replace_core_v1_node) | **PUT** /api/v1/nodes/{name} | -*CoreV1Api* | [**replace_core_v1_node_status**](docs/CoreV1Api.md#replace_core_v1_node_status) | **PUT** /api/v1/nodes/{name}/status | -*CoreV1Api* | [**replace_core_v1_persistent_volume**](docs/CoreV1Api.md#replace_core_v1_persistent_volume) | **PUT** /api/v1/persistentvolumes/{name} | -*CoreV1Api* | [**replace_core_v1_persistent_volume_status**](docs/CoreV1Api.md#replace_core_v1_persistent_volume_status) | **PUT** /api/v1/persistentvolumes/{name}/status | -*CoreV1Api* | [**watch_core_v1_config_map_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_config_map_list_for_all_namespaces) | **GET** /api/v1/watch/configmaps | -*CoreV1Api* | [**watch_core_v1_endpoints_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_endpoints_list_for_all_namespaces) | **GET** /api/v1/watch/endpoints | -*CoreV1Api* | [**watch_core_v1_event_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_event_list_for_all_namespaces) | **GET** /api/v1/watch/events | -*CoreV1Api* | [**watch_core_v1_limit_range_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_limit_range_list_for_all_namespaces) | **GET** /api/v1/watch/limitranges | -*CoreV1Api* | [**watch_core_v1_namespace**](docs/CoreV1Api.md#watch_core_v1_namespace) | **GET** /api/v1/watch/namespaces/{name} | -*CoreV1Api* | [**watch_core_v1_namespace_list**](docs/CoreV1Api.md#watch_core_v1_namespace_list) | **GET** /api/v1/watch/namespaces | -*CoreV1Api* | [**watch_core_v1_namespaced_config_map**](docs/CoreV1Api.md#watch_core_v1_namespaced_config_map) | **GET** /api/v1/watch/namespaces/{namespace}/configmaps/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_config_map_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_config_map_list) | **GET** /api/v1/watch/namespaces/{namespace}/configmaps | -*CoreV1Api* | [**watch_core_v1_namespaced_endpoints**](docs/CoreV1Api.md#watch_core_v1_namespaced_endpoints) | **GET** /api/v1/watch/namespaces/{namespace}/endpoints/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_endpoints_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_endpoints_list) | **GET** /api/v1/watch/namespaces/{namespace}/endpoints | -*CoreV1Api* | [**watch_core_v1_namespaced_event**](docs/CoreV1Api.md#watch_core_v1_namespaced_event) | **GET** /api/v1/watch/namespaces/{namespace}/events/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_event_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_event_list) | **GET** /api/v1/watch/namespaces/{namespace}/events | -*CoreV1Api* | [**watch_core_v1_namespaced_limit_range**](docs/CoreV1Api.md#watch_core_v1_namespaced_limit_range) | **GET** /api/v1/watch/namespaces/{namespace}/limitranges/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_limit_range_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_limit_range_list) | **GET** /api/v1/watch/namespaces/{namespace}/limitranges | -*CoreV1Api* | [**watch_core_v1_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#watch_core_v1_namespaced_persistent_volume_claim) | **GET** /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_persistent_volume_claim_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_persistent_volume_claim_list) | **GET** /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims | -*CoreV1Api* | [**watch_core_v1_namespaced_pod**](docs/CoreV1Api.md#watch_core_v1_namespaced_pod) | **GET** /api/v1/watch/namespaces/{namespace}/pods/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_pod_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_pod_list) | **GET** /api/v1/watch/namespaces/{namespace}/pods | -*CoreV1Api* | [**watch_core_v1_namespaced_pod_template**](docs/CoreV1Api.md#watch_core_v1_namespaced_pod_template) | **GET** /api/v1/watch/namespaces/{namespace}/podtemplates/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_pod_template_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_pod_template_list) | **GET** /api/v1/watch/namespaces/{namespace}/podtemplates | -*CoreV1Api* | [**watch_core_v1_namespaced_replication_controller**](docs/CoreV1Api.md#watch_core_v1_namespaced_replication_controller) | **GET** /api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_replication_controller_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_replication_controller_list) | **GET** /api/v1/watch/namespaces/{namespace}/replicationcontrollers | -*CoreV1Api* | [**watch_core_v1_namespaced_resource_quota**](docs/CoreV1Api.md#watch_core_v1_namespaced_resource_quota) | **GET** /api/v1/watch/namespaces/{namespace}/resourcequotas/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_resource_quota_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_resource_quota_list) | **GET** /api/v1/watch/namespaces/{namespace}/resourcequotas | -*CoreV1Api* | [**watch_core_v1_namespaced_secret**](docs/CoreV1Api.md#watch_core_v1_namespaced_secret) | **GET** /api/v1/watch/namespaces/{namespace}/secrets/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_secret_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_secret_list) | **GET** /api/v1/watch/namespaces/{namespace}/secrets | -*CoreV1Api* | [**watch_core_v1_namespaced_service**](docs/CoreV1Api.md#watch_core_v1_namespaced_service) | **GET** /api/v1/watch/namespaces/{namespace}/services/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_service_account**](docs/CoreV1Api.md#watch_core_v1_namespaced_service_account) | **GET** /api/v1/watch/namespaces/{namespace}/serviceaccounts/{name} | -*CoreV1Api* | [**watch_core_v1_namespaced_service_account_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_service_account_list) | **GET** /api/v1/watch/namespaces/{namespace}/serviceaccounts | -*CoreV1Api* | [**watch_core_v1_namespaced_service_list**](docs/CoreV1Api.md#watch_core_v1_namespaced_service_list) | **GET** /api/v1/watch/namespaces/{namespace}/services | -*CoreV1Api* | [**watch_core_v1_node**](docs/CoreV1Api.md#watch_core_v1_node) | **GET** /api/v1/watch/nodes/{name} | -*CoreV1Api* | [**watch_core_v1_node_list**](docs/CoreV1Api.md#watch_core_v1_node_list) | **GET** /api/v1/watch/nodes | -*CoreV1Api* | [**watch_core_v1_persistent_volume**](docs/CoreV1Api.md#watch_core_v1_persistent_volume) | **GET** /api/v1/watch/persistentvolumes/{name} | -*CoreV1Api* | [**watch_core_v1_persistent_volume_claim_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_persistent_volume_claim_list_for_all_namespaces) | **GET** /api/v1/watch/persistentvolumeclaims | -*CoreV1Api* | [**watch_core_v1_persistent_volume_list**](docs/CoreV1Api.md#watch_core_v1_persistent_volume_list) | **GET** /api/v1/watch/persistentvolumes | -*CoreV1Api* | [**watch_core_v1_pod_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_pod_list_for_all_namespaces) | **GET** /api/v1/watch/pods | -*CoreV1Api* | [**watch_core_v1_pod_template_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_pod_template_list_for_all_namespaces) | **GET** /api/v1/watch/podtemplates | -*CoreV1Api* | [**watch_core_v1_replication_controller_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_replication_controller_list_for_all_namespaces) | **GET** /api/v1/watch/replicationcontrollers | -*CoreV1Api* | [**watch_core_v1_resource_quota_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_resource_quota_list_for_all_namespaces) | **GET** /api/v1/watch/resourcequotas | -*CoreV1Api* | [**watch_core_v1_secret_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_secret_list_for_all_namespaces) | **GET** /api/v1/watch/secrets | -*CoreV1Api* | [**watch_core_v1_service_account_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_service_account_list_for_all_namespaces) | **GET** /api/v1/watch/serviceaccounts | -*CoreV1Api* | [**watch_core_v1_service_list_for_all_namespaces**](docs/CoreV1Api.md#watch_core_v1_service_list_for_all_namespaces) | **GET** /api/v1/watch/services | -*ExtensionsApi* | [**get_extensions_api_group**](docs/ExtensionsApi.md#get_extensions_api_group) | **GET** /apis/extensions/ | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_daemon_set) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_deployment) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/deployments | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_deployment_rollback_rollback**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_deployment_rollback_rollback) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_horizontal_pod_autoscaler) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_ingress) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_job**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_job) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/jobs | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_network_policy) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_namespaced_replica_set) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | -*ExtensionsV1beta1Api* | [**create_extensions_v1beta1_third_party_resource**](docs/ExtensionsV1beta1Api.md#create_extensions_v1beta1_third_party_resource) | **POST** /apis/extensions/v1beta1/thirdpartyresources | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_namespaced_daemon_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_namespaced_deployment) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/deployments | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_namespaced_ingress) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_namespaced_job**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_namespaced_job) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/jobs | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_namespaced_network_policy) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_namespaced_replica_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_collection_third_party_resource**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_collection_third_party_resource) | **DELETE** /apis/extensions/v1beta1/thirdpartyresources | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_namespaced_daemon_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_namespaced_deployment) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_namespaced_ingress) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_namespaced_job**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_namespaced_job) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_namespaced_network_policy) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_namespaced_replica_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | -*ExtensionsV1beta1Api* | [**delete_extensions_v1beta1_third_party_resource**](docs/ExtensionsV1beta1Api.md#delete_extensions_v1beta1_third_party_resource) | **DELETE** /apis/extensions/v1beta1/thirdpartyresources/{name} | -*ExtensionsV1beta1Api* | [**get_extensions_v1beta1_api_resources**](docs/ExtensionsV1beta1Api.md#get_extensions_v1beta1_api_resources) | **GET** /apis/extensions/v1beta1/ | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_daemon_set_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_daemon_set_for_all_namespaces) | **GET** /apis/extensions/v1beta1/daemonsets | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_deployment_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_deployment_for_all_namespaces) | **GET** /apis/extensions/v1beta1/deployments | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_horizontal_pod_autoscaler_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_horizontal_pod_autoscaler_for_all_namespaces) | **GET** /apis/extensions/v1beta1/horizontalpodautoscalers | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_ingress_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_ingress_for_all_namespaces) | **GET** /apis/extensions/v1beta1/ingresses | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_job_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_job_for_all_namespaces) | **GET** /apis/extensions/v1beta1/jobs | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_namespaced_daemon_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_namespaced_deployment) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_namespaced_horizontal_pod_autoscaler) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_namespaced_ingress) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_namespaced_job**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_namespaced_job) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/jobs | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_namespaced_network_policy) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_namespaced_replica_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_network_policy_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_network_policy_for_all_namespaces) | **GET** /apis/extensions/v1beta1/networkpolicies | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_replica_set_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_replica_set_for_all_namespaces) | **GET** /apis/extensions/v1beta1/replicasets | -*ExtensionsV1beta1Api* | [**list_extensions_v1beta1_third_party_resource**](docs/ExtensionsV1beta1Api.md#list_extensions_v1beta1_third_party_resource) | **GET** /apis/extensions/v1beta1/thirdpartyresources | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_daemon_set) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_daemon_set_status**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_daemon_set_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_deployment) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_deployment_status**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_deployment_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_deployments_scale**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_deployments_scale) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_status**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_ingress) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_ingress_status**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_ingress_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_job**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_job) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_job_status**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_job_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_network_policy) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_replica_set) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_replica_set_status**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_replica_set_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_replicasets_scale**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_replicasets_scale) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_namespaced_replicationcontrollers_scale**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_namespaced_replicationcontrollers_scale) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | -*ExtensionsV1beta1Api* | [**patch_extensions_v1beta1_third_party_resource**](docs/ExtensionsV1beta1Api.md#patch_extensions_v1beta1_third_party_resource) | **PATCH** /apis/extensions/v1beta1/thirdpartyresources/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_daemon_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_daemon_set_status**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_daemon_set_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_deployment) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_deployment_status**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_deployment_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_deployments_scale**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_deployments_scale) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_horizontal_pod_autoscaler) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_status**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_ingress) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_ingress_status**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_ingress_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_job**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_job) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_job_status**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_job_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_network_policy) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_replica_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_replica_set_status**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_replica_set_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_replicasets_scale**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_replicasets_scale) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_namespaced_replicationcontrollers_scale**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_namespaced_replicationcontrollers_scale) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | -*ExtensionsV1beta1Api* | [**read_extensions_v1beta1_third_party_resource**](docs/ExtensionsV1beta1Api.md#read_extensions_v1beta1_third_party_resource) | **GET** /apis/extensions/v1beta1/thirdpartyresources/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_daemon_set) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_daemon_set_status**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_daemon_set_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_deployment) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_deployment_status**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_deployment_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_deployments_scale**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_deployments_scale) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_horizontal_pod_autoscaler) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_status**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_ingress) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_ingress_status**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_ingress_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_job**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_job) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_job_status**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_job_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_network_policy) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_replica_set) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_replica_set_status**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_replica_set_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_replicasets_scale**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_replicasets_scale) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_namespaced_replicationcontrollers_scale**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_namespaced_replicationcontrollers_scale) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | -*ExtensionsV1beta1Api* | [**replace_extensions_v1beta1_third_party_resource**](docs/ExtensionsV1beta1Api.md#replace_extensions_v1beta1_third_party_resource) | **PUT** /apis/extensions/v1beta1/thirdpartyresources/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_daemon_set_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_daemon_set_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/daemonsets | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_deployment_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_deployment_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/deployments | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_horizontal_pod_autoscaler_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_horizontal_pod_autoscaler_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/horizontalpodautoscalers | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_ingress_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_ingress_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/ingresses | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_job_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_job_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/jobs | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_daemon_set) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_daemon_set_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_daemon_set_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_deployment) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_deployment_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_deployment_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_horizontal_pod_autoscaler_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_ingress) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_ingress_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_ingress_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_job**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_job) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_job_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_job_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_network_policy) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_network_policy_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_network_policy_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_replica_set) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_namespaced_replica_set_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_namespaced_replica_set_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_network_policy_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_network_policy_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/networkpolicies | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_replica_set_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_replica_set_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/replicasets | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_third_party_resource**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_third_party_resource) | **GET** /apis/extensions/v1beta1/watch/thirdpartyresources/{name} | -*ExtensionsV1beta1Api* | [**watch_extensions_v1beta1_third_party_resource_list**](docs/ExtensionsV1beta1Api.md#watch_extensions_v1beta1_third_party_resource_list) | **GET** /apis/extensions/v1beta1/watch/thirdpartyresources | -*LogsApi* | [**log_file_handler**](docs/LogsApi.md#log_file_handler) | **GET** /logs/{logpath} | -*LogsApi* | [**log_file_list_handler**](docs/LogsApi.md#log_file_list_handler) | **GET** /logs/ | -*PolicyApi* | [**get_policy_api_group**](docs/PolicyApi.md#get_policy_api_group) | **GET** /apis/policy/ | -*PolicyV1alpha1Api* | [**create_policy_v1alpha1_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#create_policy_v1alpha1_namespaced_pod_disruption_budget) | **POST** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets | -*PolicyV1alpha1Api* | [**delete_policy_v1alpha1_collection_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#delete_policy_v1alpha1_collection_namespaced_pod_disruption_budget) | **DELETE** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets | -*PolicyV1alpha1Api* | [**delete_policy_v1alpha1_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#delete_policy_v1alpha1_namespaced_pod_disruption_budget) | **DELETE** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name} | -*PolicyV1alpha1Api* | [**get_policy_v1alpha1_api_resources**](docs/PolicyV1alpha1Api.md#get_policy_v1alpha1_api_resources) | **GET** /apis/policy/v1alpha1/ | -*PolicyV1alpha1Api* | [**list_policy_v1alpha1_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#list_policy_v1alpha1_namespaced_pod_disruption_budget) | **GET** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets | -*PolicyV1alpha1Api* | [**list_policy_v1alpha1_pod_disruption_budget_for_all_namespaces**](docs/PolicyV1alpha1Api.md#list_policy_v1alpha1_pod_disruption_budget_for_all_namespaces) | **GET** /apis/policy/v1alpha1/poddisruptionbudgets | -*PolicyV1alpha1Api* | [**patch_policy_v1alpha1_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#patch_policy_v1alpha1_namespaced_pod_disruption_budget) | **PATCH** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name} | -*PolicyV1alpha1Api* | [**patch_policy_v1alpha1_namespaced_pod_disruption_budget_status**](docs/PolicyV1alpha1Api.md#patch_policy_v1alpha1_namespaced_pod_disruption_budget_status) | **PATCH** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name}/status | -*PolicyV1alpha1Api* | [**read_policy_v1alpha1_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#read_policy_v1alpha1_namespaced_pod_disruption_budget) | **GET** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name} | -*PolicyV1alpha1Api* | [**read_policy_v1alpha1_namespaced_pod_disruption_budget_status**](docs/PolicyV1alpha1Api.md#read_policy_v1alpha1_namespaced_pod_disruption_budget_status) | **GET** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name}/status | -*PolicyV1alpha1Api* | [**replace_policy_v1alpha1_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#replace_policy_v1alpha1_namespaced_pod_disruption_budget) | **PUT** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name} | -*PolicyV1alpha1Api* | [**replace_policy_v1alpha1_namespaced_pod_disruption_budget_status**](docs/PolicyV1alpha1Api.md#replace_policy_v1alpha1_namespaced_pod_disruption_budget_status) | **PUT** /apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name}/status | -*PolicyV1alpha1Api* | [**watch_policy_v1alpha1_namespaced_pod_disruption_budget**](docs/PolicyV1alpha1Api.md#watch_policy_v1alpha1_namespaced_pod_disruption_budget) | **GET** /apis/policy/v1alpha1/watch/namespaces/{namespace}/poddisruptionbudgets/{name} | -*PolicyV1alpha1Api* | [**watch_policy_v1alpha1_namespaced_pod_disruption_budget_list**](docs/PolicyV1alpha1Api.md#watch_policy_v1alpha1_namespaced_pod_disruption_budget_list) | **GET** /apis/policy/v1alpha1/watch/namespaces/{namespace}/poddisruptionbudgets | -*PolicyV1alpha1Api* | [**watch_policy_v1alpha1_pod_disruption_budget_list_for_all_namespaces**](docs/PolicyV1alpha1Api.md#watch_policy_v1alpha1_pod_disruption_budget_list_for_all_namespaces) | **GET** /apis/policy/v1alpha1/watch/poddisruptionbudgets | -*RbacAuthorizationApi* | [**get_rbac_authorization_api_group**](docs/RbacAuthorizationApi.md#get_rbac_authorization_api_group) | **GET** /apis/rbac.authorization.k8s.io/ | -*RbacAuthorizationV1alpha1Api* | [**create_rbac_authorization_v1alpha1_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#create_rbac_authorization_v1alpha1_cluster_role) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles | -*RbacAuthorizationV1alpha1Api* | [**create_rbac_authorization_v1alpha1_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#create_rbac_authorization_v1alpha1_cluster_role_binding) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings | -*RbacAuthorizationV1alpha1Api* | [**create_rbac_authorization_v1alpha1_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#create_rbac_authorization_v1alpha1_namespaced_role) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles | -*RbacAuthorizationV1alpha1Api* | [**create_rbac_authorization_v1alpha1_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#create_rbac_authorization_v1alpha1_namespaced_role_binding) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_cluster_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_cluster_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_collection_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_collection_cluster_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_collection_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_collection_cluster_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_collection_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_collection_namespaced_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_collection_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_collection_namespaced_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_namespaced_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | -*RbacAuthorizationV1alpha1Api* | [**delete_rbac_authorization_v1alpha1_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_rbac_authorization_v1alpha1_namespaced_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**get_rbac_authorization_v1alpha1_api_resources**](docs/RbacAuthorizationV1alpha1Api.md#get_rbac_authorization_v1alpha1_api_resources) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/ | -*RbacAuthorizationV1alpha1Api* | [**list_rbac_authorization_v1alpha1_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#list_rbac_authorization_v1alpha1_cluster_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles | -*RbacAuthorizationV1alpha1Api* | [**list_rbac_authorization_v1alpha1_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#list_rbac_authorization_v1alpha1_cluster_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings | -*RbacAuthorizationV1alpha1Api* | [**list_rbac_authorization_v1alpha1_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#list_rbac_authorization_v1alpha1_namespaced_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles | -*RbacAuthorizationV1alpha1Api* | [**list_rbac_authorization_v1alpha1_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#list_rbac_authorization_v1alpha1_namespaced_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings | -*RbacAuthorizationV1alpha1Api* | [**list_rbac_authorization_v1alpha1_role_binding_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#list_rbac_authorization_v1alpha1_role_binding_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/rolebindings | -*RbacAuthorizationV1alpha1Api* | [**list_rbac_authorization_v1alpha1_role_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#list_rbac_authorization_v1alpha1_role_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/roles | -*RbacAuthorizationV1alpha1Api* | [**patch_rbac_authorization_v1alpha1_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#patch_rbac_authorization_v1alpha1_cluster_role) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | -*RbacAuthorizationV1alpha1Api* | [**patch_rbac_authorization_v1alpha1_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#patch_rbac_authorization_v1alpha1_cluster_role_binding) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**patch_rbac_authorization_v1alpha1_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#patch_rbac_authorization_v1alpha1_namespaced_role) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | -*RbacAuthorizationV1alpha1Api* | [**patch_rbac_authorization_v1alpha1_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#patch_rbac_authorization_v1alpha1_namespaced_role_binding) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**read_rbac_authorization_v1alpha1_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#read_rbac_authorization_v1alpha1_cluster_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | -*RbacAuthorizationV1alpha1Api* | [**read_rbac_authorization_v1alpha1_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#read_rbac_authorization_v1alpha1_cluster_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**read_rbac_authorization_v1alpha1_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#read_rbac_authorization_v1alpha1_namespaced_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | -*RbacAuthorizationV1alpha1Api* | [**read_rbac_authorization_v1alpha1_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#read_rbac_authorization_v1alpha1_namespaced_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**replace_rbac_authorization_v1alpha1_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#replace_rbac_authorization_v1alpha1_cluster_role) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | -*RbacAuthorizationV1alpha1Api* | [**replace_rbac_authorization_v1alpha1_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#replace_rbac_authorization_v1alpha1_cluster_role_binding) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**replace_rbac_authorization_v1alpha1_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#replace_rbac_authorization_v1alpha1_namespaced_role) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | -*RbacAuthorizationV1alpha1Api* | [**replace_rbac_authorization_v1alpha1_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#replace_rbac_authorization_v1alpha1_namespaced_role_binding) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_cluster_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name} | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_cluster_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_cluster_role_binding_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_cluster_role_binding_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_cluster_role_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_cluster_role_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_namespaced_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name} | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_namespaced_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name} | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_namespaced_role_binding_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_namespaced_role_binding_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_namespaced_role_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_namespaced_role_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_role_binding_list_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_role_binding_list_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings | -*RbacAuthorizationV1alpha1Api* | [**watch_rbac_authorization_v1alpha1_role_list_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#watch_rbac_authorization_v1alpha1_role_list_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/roles | -*StorageApi* | [**get_storage_api_group**](docs/StorageApi.md#get_storage_api_group) | **GET** /apis/storage.k8s.io/ | -*StorageV1beta1Api* | [**create_storage_v1beta1_storage_class**](docs/StorageV1beta1Api.md#create_storage_v1beta1_storage_class) | **POST** /apis/storage.k8s.io/v1beta1/storageclasses | -*StorageV1beta1Api* | [**delete_storage_v1beta1_collection_storage_class**](docs/StorageV1beta1Api.md#delete_storage_v1beta1_collection_storage_class) | **DELETE** /apis/storage.k8s.io/v1beta1/storageclasses | -*StorageV1beta1Api* | [**delete_storage_v1beta1_storage_class**](docs/StorageV1beta1Api.md#delete_storage_v1beta1_storage_class) | **DELETE** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | -*StorageV1beta1Api* | [**get_storage_v1beta1_api_resources**](docs/StorageV1beta1Api.md#get_storage_v1beta1_api_resources) | **GET** /apis/storage.k8s.io/v1beta1/ | -*StorageV1beta1Api* | [**list_storage_v1beta1_storage_class**](docs/StorageV1beta1Api.md#list_storage_v1beta1_storage_class) | **GET** /apis/storage.k8s.io/v1beta1/storageclasses | -*StorageV1beta1Api* | [**patch_storage_v1beta1_storage_class**](docs/StorageV1beta1Api.md#patch_storage_v1beta1_storage_class) | **PATCH** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | -*StorageV1beta1Api* | [**read_storage_v1beta1_storage_class**](docs/StorageV1beta1Api.md#read_storage_v1beta1_storage_class) | **GET** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | -*StorageV1beta1Api* | [**replace_storage_v1beta1_storage_class**](docs/StorageV1beta1Api.md#replace_storage_v1beta1_storage_class) | **PUT** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | -*StorageV1beta1Api* | [**watch_storage_v1beta1_storage_class**](docs/StorageV1beta1Api.md#watch_storage_v1beta1_storage_class) | **GET** /apis/storage.k8s.io/v1beta1/watch/storageclasses/{name} | -*StorageV1beta1Api* | [**watch_storage_v1beta1_storage_class_list**](docs/StorageV1beta1Api.md#watch_storage_v1beta1_storage_class_list) | **GET** /apis/storage.k8s.io/v1beta1/watch/storageclasses | -*VersionApi* | [**get_code_version**](docs/VersionApi.md#get_code_version) | **GET** /version/ | - - -## Documentation For Models - - - [IntstrIntOrString](docs/IntstrIntOrString.md) - - [ResourceQuantity](docs/ResourceQuantity.md) - - [RuntimeRawExtension](docs/RuntimeRawExtension.md) - - [UnversionedAPIGroup](docs/UnversionedAPIGroup.md) - - [UnversionedAPIGroupList](docs/UnversionedAPIGroupList.md) - - [UnversionedAPIResource](docs/UnversionedAPIResource.md) - - [UnversionedAPIResourceList](docs/UnversionedAPIResourceList.md) - - [UnversionedAPIVersions](docs/UnversionedAPIVersions.md) - - [UnversionedGroupVersionForDiscovery](docs/UnversionedGroupVersionForDiscovery.md) - - [UnversionedLabelSelector](docs/UnversionedLabelSelector.md) - - [UnversionedLabelSelectorRequirement](docs/UnversionedLabelSelectorRequirement.md) - - [UnversionedListMeta](docs/UnversionedListMeta.md) - - [UnversionedServerAddressByClientCIDR](docs/UnversionedServerAddressByClientCIDR.md) - - [UnversionedStatus](docs/UnversionedStatus.md) - - [UnversionedStatusCause](docs/UnversionedStatusCause.md) - - [UnversionedStatusDetails](docs/UnversionedStatusDetails.md) - - [UnversionedTime](docs/UnversionedTime.md) - - [V1AttachedVolume](docs/V1AttachedVolume.md) - - [V1Binding](docs/V1Binding.md) - - [V1Capabilities](docs/V1Capabilities.md) - - [V1ComponentCondition](docs/V1ComponentCondition.md) - - [V1ComponentStatus](docs/V1ComponentStatus.md) - - [V1ComponentStatusList](docs/V1ComponentStatusList.md) - - [V1ConfigMap](docs/V1ConfigMap.md) - - [V1ConfigMapKeySelector](docs/V1ConfigMapKeySelector.md) - - [V1ConfigMapList](docs/V1ConfigMapList.md) - - [V1Container](docs/V1Container.md) - - [V1ContainerImage](docs/V1ContainerImage.md) - - [V1ContainerPort](docs/V1ContainerPort.md) - - [V1ContainerState](docs/V1ContainerState.md) - - [V1ContainerStateRunning](docs/V1ContainerStateRunning.md) - - [V1ContainerStateTerminated](docs/V1ContainerStateTerminated.md) - - [V1ContainerStateWaiting](docs/V1ContainerStateWaiting.md) - - [V1ContainerStatus](docs/V1ContainerStatus.md) - - [V1CrossVersionObjectReference](docs/V1CrossVersionObjectReference.md) - - [V1DaemonEndpoint](docs/V1DaemonEndpoint.md) - - [V1DeleteOptions](docs/V1DeleteOptions.md) - - [V1EndpointAddress](docs/V1EndpointAddress.md) - - [V1EndpointPort](docs/V1EndpointPort.md) - - [V1EndpointSubset](docs/V1EndpointSubset.md) - - [V1Endpoints](docs/V1Endpoints.md) - - [V1EndpointsList](docs/V1EndpointsList.md) - - [V1EnvVar](docs/V1EnvVar.md) - - [V1EnvVarSource](docs/V1EnvVarSource.md) - - [V1Event](docs/V1Event.md) - - [V1EventList](docs/V1EventList.md) - - [V1EventSource](docs/V1EventSource.md) - - [V1ExecAction](docs/V1ExecAction.md) - - [V1HTTPGetAction](docs/V1HTTPGetAction.md) - - [V1HTTPHeader](docs/V1HTTPHeader.md) - - [V1Handler](docs/V1Handler.md) - - [V1HorizontalPodAutoscaler](docs/V1HorizontalPodAutoscaler.md) - - [V1HorizontalPodAutoscalerList](docs/V1HorizontalPodAutoscalerList.md) - - [V1HorizontalPodAutoscalerSpec](docs/V1HorizontalPodAutoscalerSpec.md) - - [V1HorizontalPodAutoscalerStatus](docs/V1HorizontalPodAutoscalerStatus.md) - - [V1Job](docs/V1Job.md) - - [V1JobCondition](docs/V1JobCondition.md) - - [V1JobList](docs/V1JobList.md) - - [V1JobSpec](docs/V1JobSpec.md) - - [V1JobStatus](docs/V1JobStatus.md) - - [V1Lifecycle](docs/V1Lifecycle.md) - - [V1LimitRange](docs/V1LimitRange.md) - - [V1LimitRangeItem](docs/V1LimitRangeItem.md) - - [V1LimitRangeList](docs/V1LimitRangeList.md) - - [V1LimitRangeSpec](docs/V1LimitRangeSpec.md) - - [V1LoadBalancerIngress](docs/V1LoadBalancerIngress.md) - - [V1LoadBalancerStatus](docs/V1LoadBalancerStatus.md) - - [V1LocalObjectReference](docs/V1LocalObjectReference.md) - - [V1Namespace](docs/V1Namespace.md) - - [V1NamespaceList](docs/V1NamespaceList.md) - - [V1NamespaceSpec](docs/V1NamespaceSpec.md) - - [V1NamespaceStatus](docs/V1NamespaceStatus.md) - - [V1Node](docs/V1Node.md) - - [V1NodeAddress](docs/V1NodeAddress.md) - - [V1NodeCondition](docs/V1NodeCondition.md) - - [V1NodeDaemonEndpoints](docs/V1NodeDaemonEndpoints.md) - - [V1NodeList](docs/V1NodeList.md) - - [V1NodeSpec](docs/V1NodeSpec.md) - - [V1NodeStatus](docs/V1NodeStatus.md) - - [V1NodeSystemInfo](docs/V1NodeSystemInfo.md) - - [V1ObjectFieldSelector](docs/V1ObjectFieldSelector.md) - - [V1ObjectMeta](docs/V1ObjectMeta.md) - - [V1ObjectReference](docs/V1ObjectReference.md) - - [V1OwnerReference](docs/V1OwnerReference.md) - - [V1PersistentVolume](docs/V1PersistentVolume.md) - - [V1PersistentVolumeClaim](docs/V1PersistentVolumeClaim.md) - - [V1PersistentVolumeClaimList](docs/V1PersistentVolumeClaimList.md) - - [V1PersistentVolumeClaimSpec](docs/V1PersistentVolumeClaimSpec.md) - - [V1PersistentVolumeClaimStatus](docs/V1PersistentVolumeClaimStatus.md) - - [V1PersistentVolumeList](docs/V1PersistentVolumeList.md) - - [V1PersistentVolumeSpec](docs/V1PersistentVolumeSpec.md) - - [V1PersistentVolumeStatus](docs/V1PersistentVolumeStatus.md) - - [V1Pod](docs/V1Pod.md) - - [V1PodCondition](docs/V1PodCondition.md) - - [V1PodList](docs/V1PodList.md) - - [V1PodSecurityContext](docs/V1PodSecurityContext.md) - - [V1PodSpec](docs/V1PodSpec.md) - - [V1PodStatus](docs/V1PodStatus.md) - - [V1PodTemplate](docs/V1PodTemplate.md) - - [V1PodTemplateList](docs/V1PodTemplateList.md) - - [V1PodTemplateSpec](docs/V1PodTemplateSpec.md) - - [V1Preconditions](docs/V1Preconditions.md) - - [V1Probe](docs/V1Probe.md) - - [V1ReplicationController](docs/V1ReplicationController.md) - - [V1ReplicationControllerCondition](docs/V1ReplicationControllerCondition.md) - - [V1ReplicationControllerList](docs/V1ReplicationControllerList.md) - - [V1ReplicationControllerSpec](docs/V1ReplicationControllerSpec.md) - - [V1ReplicationControllerStatus](docs/V1ReplicationControllerStatus.md) - - [V1ResourceFieldSelector](docs/V1ResourceFieldSelector.md) - - [V1ResourceQuota](docs/V1ResourceQuota.md) - - [V1ResourceQuotaList](docs/V1ResourceQuotaList.md) - - [V1ResourceQuotaSpec](docs/V1ResourceQuotaSpec.md) - - [V1ResourceQuotaStatus](docs/V1ResourceQuotaStatus.md) - - [V1ResourceRequirements](docs/V1ResourceRequirements.md) - - [V1SELinuxOptions](docs/V1SELinuxOptions.md) - - [V1Scale](docs/V1Scale.md) - - [V1ScaleSpec](docs/V1ScaleSpec.md) - - [V1ScaleStatus](docs/V1ScaleStatus.md) - - [V1Secret](docs/V1Secret.md) - - [V1SecretKeySelector](docs/V1SecretKeySelector.md) - - [V1SecretList](docs/V1SecretList.md) - - [V1SecurityContext](docs/V1SecurityContext.md) - - [V1Service](docs/V1Service.md) - - [V1ServiceAccount](docs/V1ServiceAccount.md) - - [V1ServiceAccountList](docs/V1ServiceAccountList.md) - - [V1ServiceList](docs/V1ServiceList.md) - - [V1ServicePort](docs/V1ServicePort.md) - - [V1ServiceSpec](docs/V1ServiceSpec.md) - - [V1ServiceStatus](docs/V1ServiceStatus.md) - - [V1TCPSocketAction](docs/V1TCPSocketAction.md) - - [V1Volume](docs/V1Volume.md) - - [V1VolumeMount](docs/V1VolumeMount.md) - - [V1alpha1CertificateSigningRequest](docs/V1alpha1CertificateSigningRequest.md) - - [V1alpha1CertificateSigningRequestCondition](docs/V1alpha1CertificateSigningRequestCondition.md) - - [V1alpha1CertificateSigningRequestList](docs/V1alpha1CertificateSigningRequestList.md) - - [V1alpha1CertificateSigningRequestSpec](docs/V1alpha1CertificateSigningRequestSpec.md) - - [V1alpha1CertificateSigningRequestStatus](docs/V1alpha1CertificateSigningRequestStatus.md) - - [V1alpha1ClusterRole](docs/V1alpha1ClusterRole.md) - - [V1alpha1ClusterRoleBinding](docs/V1alpha1ClusterRoleBinding.md) - - [V1alpha1ClusterRoleBindingList](docs/V1alpha1ClusterRoleBindingList.md) - - [V1alpha1ClusterRoleList](docs/V1alpha1ClusterRoleList.md) - - [V1alpha1Eviction](docs/V1alpha1Eviction.md) - - [V1alpha1PodDisruptionBudget](docs/V1alpha1PodDisruptionBudget.md) - - [V1alpha1PodDisruptionBudgetList](docs/V1alpha1PodDisruptionBudgetList.md) - - [V1alpha1PodDisruptionBudgetSpec](docs/V1alpha1PodDisruptionBudgetSpec.md) - - [V1alpha1PodDisruptionBudgetStatus](docs/V1alpha1PodDisruptionBudgetStatus.md) - - [V1alpha1PolicyRule](docs/V1alpha1PolicyRule.md) - - [V1alpha1Role](docs/V1alpha1Role.md) - - [V1alpha1RoleBinding](docs/V1alpha1RoleBinding.md) - - [V1alpha1RoleBindingList](docs/V1alpha1RoleBindingList.md) - - [V1alpha1RoleList](docs/V1alpha1RoleList.md) - - [V1alpha1RoleRef](docs/V1alpha1RoleRef.md) - - [V1alpha1StatefulSet](docs/V1alpha1StatefulSet.md) - - [V1alpha1StatefulSetList](docs/V1alpha1StatefulSetList.md) - - [V1alpha1StatefulSetSpec](docs/V1alpha1StatefulSetSpec.md) - - [V1alpha1StatefulSetStatus](docs/V1alpha1StatefulSetStatus.md) - - [V1alpha1Subject](docs/V1alpha1Subject.md) - - [V1beta1APIVersion](docs/V1beta1APIVersion.md) - - [V1beta1CPUTargetUtilization](docs/V1beta1CPUTargetUtilization.md) - - [V1beta1DaemonSet](docs/V1beta1DaemonSet.md) - - [V1beta1DaemonSetList](docs/V1beta1DaemonSetList.md) - - [V1beta1DaemonSetSpec](docs/V1beta1DaemonSetSpec.md) - - [V1beta1DaemonSetStatus](docs/V1beta1DaemonSetStatus.md) - - [V1beta1Deployment](docs/V1beta1Deployment.md) - - [V1beta1DeploymentCondition](docs/V1beta1DeploymentCondition.md) - - [V1beta1DeploymentList](docs/V1beta1DeploymentList.md) - - [V1beta1DeploymentRollback](docs/V1beta1DeploymentRollback.md) - - [V1beta1DeploymentSpec](docs/V1beta1DeploymentSpec.md) - - [V1beta1DeploymentStatus](docs/V1beta1DeploymentStatus.md) - - [V1beta1DeploymentStrategy](docs/V1beta1DeploymentStrategy.md) - - [V1beta1HorizontalPodAutoscaler](docs/V1beta1HorizontalPodAutoscaler.md) - - [V1beta1HorizontalPodAutoscalerList](docs/V1beta1HorizontalPodAutoscalerList.md) - - [V1beta1HorizontalPodAutoscalerSpec](docs/V1beta1HorizontalPodAutoscalerSpec.md) - - [V1beta1HorizontalPodAutoscalerStatus](docs/V1beta1HorizontalPodAutoscalerStatus.md) - - [V1beta1Ingress](docs/V1beta1Ingress.md) - - [V1beta1IngressBackend](docs/V1beta1IngressBackend.md) - - [V1beta1IngressList](docs/V1beta1IngressList.md) - - [V1beta1IngressRule](docs/V1beta1IngressRule.md) - - [V1beta1IngressSpec](docs/V1beta1IngressSpec.md) - - [V1beta1IngressStatus](docs/V1beta1IngressStatus.md) - - [V1beta1IngressTLS](docs/V1beta1IngressTLS.md) - - [V1beta1Job](docs/V1beta1Job.md) - - [V1beta1JobCondition](docs/V1beta1JobCondition.md) - - [V1beta1JobList](docs/V1beta1JobList.md) - - [V1beta1JobSpec](docs/V1beta1JobSpec.md) - - [V1beta1JobStatus](docs/V1beta1JobStatus.md) - - [V1beta1LocalSubjectAccessReview](docs/V1beta1LocalSubjectAccessReview.md) - - [V1beta1NetworkPolicy](docs/V1beta1NetworkPolicy.md) - - [V1beta1NetworkPolicyIngressRule](docs/V1beta1NetworkPolicyIngressRule.md) - - [V1beta1NetworkPolicyList](docs/V1beta1NetworkPolicyList.md) - - [V1beta1NetworkPolicyPeer](docs/V1beta1NetworkPolicyPeer.md) - - [V1beta1NetworkPolicyPort](docs/V1beta1NetworkPolicyPort.md) - - [V1beta1NetworkPolicySpec](docs/V1beta1NetworkPolicySpec.md) - - [V1beta1NonResourceAttributes](docs/V1beta1NonResourceAttributes.md) - - [V1beta1ReplicaSet](docs/V1beta1ReplicaSet.md) - - [V1beta1ReplicaSetCondition](docs/V1beta1ReplicaSetCondition.md) - - [V1beta1ReplicaSetList](docs/V1beta1ReplicaSetList.md) - - [V1beta1ReplicaSetSpec](docs/V1beta1ReplicaSetSpec.md) - - [V1beta1ReplicaSetStatus](docs/V1beta1ReplicaSetStatus.md) - - [V1beta1ResourceAttributes](docs/V1beta1ResourceAttributes.md) - - [V1beta1RollbackConfig](docs/V1beta1RollbackConfig.md) - - [V1beta1RollingUpdateDeployment](docs/V1beta1RollingUpdateDeployment.md) - - [V1beta1Scale](docs/V1beta1Scale.md) - - [V1beta1ScaleSpec](docs/V1beta1ScaleSpec.md) - - [V1beta1ScaleStatus](docs/V1beta1ScaleStatus.md) - - [V1beta1SelfSubjectAccessReview](docs/V1beta1SelfSubjectAccessReview.md) - - [V1beta1SelfSubjectAccessReviewSpec](docs/V1beta1SelfSubjectAccessReviewSpec.md) - - [V1beta1StorageClass](docs/V1beta1StorageClass.md) - - [V1beta1StorageClassList](docs/V1beta1StorageClassList.md) - - [V1beta1SubjectAccessReview](docs/V1beta1SubjectAccessReview.md) - - [V1beta1SubjectAccessReviewSpec](docs/V1beta1SubjectAccessReviewSpec.md) - - [V1beta1SubjectAccessReviewStatus](docs/V1beta1SubjectAccessReviewStatus.md) - - [V1beta1SubresourceReference](docs/V1beta1SubresourceReference.md) - - [V1beta1ThirdPartyResource](docs/V1beta1ThirdPartyResource.md) - - [V1beta1ThirdPartyResourceList](docs/V1beta1ThirdPartyResourceList.md) - - [V1beta1TokenReview](docs/V1beta1TokenReview.md) - - [V1beta1TokenReviewSpec](docs/V1beta1TokenReviewSpec.md) - - [V1beta1TokenReviewStatus](docs/V1beta1TokenReviewStatus.md) - - [V1beta1UserInfo](docs/V1beta1UserInfo.md) - - [VersionInfo](docs/VersionInfo.md) - - [VersionedEvent](docs/VersionedEvent.md) - - -## Documentation For Authorization - - -## BearerToken - -- **Type**: API key -- **API key parameter name**: authorization -- **Location**: HTTP header - - -## Author - - - diff --git a/README.md b/README.md index 480992027..3cae06d9b 100644 --- a/README.md +++ b/README.md @@ -19,5 +19,850 @@ for i in ret.items: # Generated client README -for generated client documentation, refer to [generated README](GEN_README.md). + +# k8sclient +No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + +This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: + +- API version: unversioned +- Package version: 1.0.0 +- Build package: class io.swagger.codegen.languages.PythonClientCodegen + +## Requirements. + +Python 2.7 and 3.4+ + +## Installation & Usage +### pip install + +If the python package is hosted on Github, you can install directly from Github + +```sh +pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git +``` +(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`) + +Then import the package: +```python +import k8sclient +``` + +### Setuptools + +Install via [Setuptools](http://pypi.python.org/pypi/setuptools). + +```sh +python setup.py install --user +``` +(or `sudo python setup.py install` to install the package for all users) + +Then import the package: +```python +import k8sclient +``` + +## Getting Started + +Please follow the [installation procedure](#installation--usage) and then run the following: + +```python +from __future__ import print_function +import time +import k8sclient +from k8sclient.rest import ApiException +from pprint import pprint + +# Configure API key authorization: BearerToken +k8sclient.configuration.api_key['authorization'] = 'YOUR_API_KEY' +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# k8sclient.configuration.api_key_prefix['authorization'] = 'Bearer' +# create an instance of the API class +api_instance = k8sclient.ApisApi() + +try: + api_response = api_instance.get_api_versions() + pprint(api_response) +except ApiException as e: + print("Exception when calling ApisApi->get_api_versions: %s\n" % e) + +``` + +## Documentation for API Endpoints + +All URIs are relative to *https://localhost* + +Class | Method | HTTP request | Description +------------ | ------------- | ------------- | ------------- +*ApisApi* | [**get_api_versions**](docs/ApisApi.md#get_api_versions) | **GET** /apis/ | +*AppsApi* | [**get_api_group**](docs/AppsApi.md#get_api_group) | **GET** /apis/apps/ | +*AppsV1beta1Api* | [**create_namespaced_stateful_set**](docs/AppsV1beta1Api.md#create_namespaced_stateful_set) | **POST** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets | +*AppsV1beta1Api* | [**delete_collection_namespaced_stateful_set**](docs/AppsV1beta1Api.md#delete_collection_namespaced_stateful_set) | **DELETE** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets | +*AppsV1beta1Api* | [**delete_namespaced_stateful_set**](docs/AppsV1beta1Api.md#delete_namespaced_stateful_set) | **DELETE** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | +*AppsV1beta1Api* | [**get_api_resources**](docs/AppsV1beta1Api.md#get_api_resources) | **GET** /apis/apps/v1beta1/ | +*AppsV1beta1Api* | [**list_namespaced_stateful_set**](docs/AppsV1beta1Api.md#list_namespaced_stateful_set) | **GET** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets | +*AppsV1beta1Api* | [**list_stateful_set_for_all_namespaces**](docs/AppsV1beta1Api.md#list_stateful_set_for_all_namespaces) | **GET** /apis/apps/v1beta1/statefulsets | +*AppsV1beta1Api* | [**patch_namespaced_stateful_set**](docs/AppsV1beta1Api.md#patch_namespaced_stateful_set) | **PATCH** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | +*AppsV1beta1Api* | [**patch_namespaced_stateful_set_status**](docs/AppsV1beta1Api.md#patch_namespaced_stateful_set_status) | **PATCH** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | +*AppsV1beta1Api* | [**read_namespaced_stateful_set**](docs/AppsV1beta1Api.md#read_namespaced_stateful_set) | **GET** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | +*AppsV1beta1Api* | [**read_namespaced_stateful_set_status**](docs/AppsV1beta1Api.md#read_namespaced_stateful_set_status) | **GET** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | +*AppsV1beta1Api* | [**replace_namespaced_stateful_set**](docs/AppsV1beta1Api.md#replace_namespaced_stateful_set) | **PUT** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | +*AppsV1beta1Api* | [**replace_namespaced_stateful_set_status**](docs/AppsV1beta1Api.md#replace_namespaced_stateful_set_status) | **PUT** /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | +*AppsV1beta1Api* | [**watch_namespaced_stateful_set**](docs/AppsV1beta1Api.md#watch_namespaced_stateful_set) | **GET** /apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets/{name} | +*AppsV1beta1Api* | [**watch_namespaced_stateful_set_list**](docs/AppsV1beta1Api.md#watch_namespaced_stateful_set_list) | **GET** /apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets | +*AppsV1beta1Api* | [**watch_stateful_set_list_for_all_namespaces**](docs/AppsV1beta1Api.md#watch_stateful_set_list_for_all_namespaces) | **GET** /apis/apps/v1beta1/watch/statefulsets | +*AuthenticationApi* | [**get_api_group**](docs/AuthenticationApi.md#get_api_group) | **GET** /apis/authentication.k8s.io/ | +*AuthenticationV1beta1Api* | [**create_token_review**](docs/AuthenticationV1beta1Api.md#create_token_review) | **POST** /apis/authentication.k8s.io/v1beta1/tokenreviews | +*AuthenticationV1beta1Api* | [**get_api_resources**](docs/AuthenticationV1beta1Api.md#get_api_resources) | **GET** /apis/authentication.k8s.io/v1beta1/ | +*AuthorizationApi* | [**get_api_group**](docs/AuthorizationApi.md#get_api_group) | **GET** /apis/authorization.k8s.io/ | +*AuthorizationV1beta1Api* | [**create_namespaced_local_subject_access_review**](docs/AuthorizationV1beta1Api.md#create_namespaced_local_subject_access_review) | **POST** /apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews | +*AuthorizationV1beta1Api* | [**create_self_subject_access_review**](docs/AuthorizationV1beta1Api.md#create_self_subject_access_review) | **POST** /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews | +*AuthorizationV1beta1Api* | [**create_subject_access_review**](docs/AuthorizationV1beta1Api.md#create_subject_access_review) | **POST** /apis/authorization.k8s.io/v1beta1/subjectaccessreviews | +*AuthorizationV1beta1Api* | [**get_api_resources**](docs/AuthorizationV1beta1Api.md#get_api_resources) | **GET** /apis/authorization.k8s.io/v1beta1/ | +*AutoscalingApi* | [**get_api_group**](docs/AutoscalingApi.md#get_api_group) | **GET** /apis/autoscaling/ | +*AutoscalingV1Api* | [**create_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#create_namespaced_horizontal_pod_autoscaler) | **POST** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers | +*AutoscalingV1Api* | [**delete_collection_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#delete_collection_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers | +*AutoscalingV1Api* | [**delete_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#delete_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*AutoscalingV1Api* | [**get_api_resources**](docs/AutoscalingV1Api.md#get_api_resources) | **GET** /apis/autoscaling/v1/ | +*AutoscalingV1Api* | [**list_horizontal_pod_autoscaler_for_all_namespaces**](docs/AutoscalingV1Api.md#list_horizontal_pod_autoscaler_for_all_namespaces) | **GET** /apis/autoscaling/v1/horizontalpodautoscalers | +*AutoscalingV1Api* | [**list_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#list_namespaced_horizontal_pod_autoscaler) | **GET** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers | +*AutoscalingV1Api* | [**patch_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#patch_namespaced_horizontal_pod_autoscaler) | **PATCH** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*AutoscalingV1Api* | [**patch_namespaced_horizontal_pod_autoscaler_status**](docs/AutoscalingV1Api.md#patch_namespaced_horizontal_pod_autoscaler_status) | **PATCH** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | +*AutoscalingV1Api* | [**read_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#read_namespaced_horizontal_pod_autoscaler) | **GET** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*AutoscalingV1Api* | [**read_namespaced_horizontal_pod_autoscaler_status**](docs/AutoscalingV1Api.md#read_namespaced_horizontal_pod_autoscaler_status) | **GET** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | +*AutoscalingV1Api* | [**replace_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#replace_namespaced_horizontal_pod_autoscaler) | **PUT** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*AutoscalingV1Api* | [**replace_namespaced_horizontal_pod_autoscaler_status**](docs/AutoscalingV1Api.md#replace_namespaced_horizontal_pod_autoscaler_status) | **PUT** /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | +*AutoscalingV1Api* | [**watch_horizontal_pod_autoscaler_list_for_all_namespaces**](docs/AutoscalingV1Api.md#watch_horizontal_pod_autoscaler_list_for_all_namespaces) | **GET** /apis/autoscaling/v1/watch/horizontalpodautoscalers | +*AutoscalingV1Api* | [**watch_namespaced_horizontal_pod_autoscaler**](docs/AutoscalingV1Api.md#watch_namespaced_horizontal_pod_autoscaler) | **GET** /apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*AutoscalingV1Api* | [**watch_namespaced_horizontal_pod_autoscaler_list**](docs/AutoscalingV1Api.md#watch_namespaced_horizontal_pod_autoscaler_list) | **GET** /apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers | +*BatchApi* | [**get_api_group**](docs/BatchApi.md#get_api_group) | **GET** /apis/batch/ | +*BatchV1Api* | [**create_namespaced_job**](docs/BatchV1Api.md#create_namespaced_job) | **POST** /apis/batch/v1/namespaces/{namespace}/jobs | +*BatchV1Api* | [**delete_collection_namespaced_job**](docs/BatchV1Api.md#delete_collection_namespaced_job) | **DELETE** /apis/batch/v1/namespaces/{namespace}/jobs | +*BatchV1Api* | [**delete_namespaced_job**](docs/BatchV1Api.md#delete_namespaced_job) | **DELETE** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | +*BatchV1Api* | [**get_api_resources**](docs/BatchV1Api.md#get_api_resources) | **GET** /apis/batch/v1/ | +*BatchV1Api* | [**list_job_for_all_namespaces**](docs/BatchV1Api.md#list_job_for_all_namespaces) | **GET** /apis/batch/v1/jobs | +*BatchV1Api* | [**list_namespaced_job**](docs/BatchV1Api.md#list_namespaced_job) | **GET** /apis/batch/v1/namespaces/{namespace}/jobs | +*BatchV1Api* | [**patch_namespaced_job**](docs/BatchV1Api.md#patch_namespaced_job) | **PATCH** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | +*BatchV1Api* | [**patch_namespaced_job_status**](docs/BatchV1Api.md#patch_namespaced_job_status) | **PATCH** /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status | +*BatchV1Api* | [**read_namespaced_job**](docs/BatchV1Api.md#read_namespaced_job) | **GET** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | +*BatchV1Api* | [**read_namespaced_job_status**](docs/BatchV1Api.md#read_namespaced_job_status) | **GET** /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status | +*BatchV1Api* | [**replace_namespaced_job**](docs/BatchV1Api.md#replace_namespaced_job) | **PUT** /apis/batch/v1/namespaces/{namespace}/jobs/{name} | +*BatchV1Api* | [**replace_namespaced_job_status**](docs/BatchV1Api.md#replace_namespaced_job_status) | **PUT** /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status | +*BatchV1Api* | [**watch_job_list_for_all_namespaces**](docs/BatchV1Api.md#watch_job_list_for_all_namespaces) | **GET** /apis/batch/v1/watch/jobs | +*BatchV1Api* | [**watch_namespaced_job**](docs/BatchV1Api.md#watch_namespaced_job) | **GET** /apis/batch/v1/watch/namespaces/{namespace}/jobs/{name} | +*BatchV1Api* | [**watch_namespaced_job_list**](docs/BatchV1Api.md#watch_namespaced_job_list) | **GET** /apis/batch/v1/watch/namespaces/{namespace}/jobs | +*BatchV2alpha1Api* | [**get_api_resources**](docs/BatchV2alpha1Api.md#get_api_resources) | **GET** /apis/batch/v2alpha1/ | +*CertificatesApi* | [**get_api_group**](docs/CertificatesApi.md#get_api_group) | **GET** /apis/certificates.k8s.io/ | +*CertificatesV1alpha1Api* | [**create_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#create_certificate_signing_request) | **POST** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | +*CertificatesV1alpha1Api* | [**delete_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#delete_certificate_signing_request) | **DELETE** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | +*CertificatesV1alpha1Api* | [**delete_collection_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#delete_collection_certificate_signing_request) | **DELETE** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | +*CertificatesV1alpha1Api* | [**get_api_resources**](docs/CertificatesV1alpha1Api.md#get_api_resources) | **GET** /apis/certificates.k8s.io/v1alpha1/ | +*CertificatesV1alpha1Api* | [**list_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#list_certificate_signing_request) | **GET** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | +*CertificatesV1alpha1Api* | [**patch_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#patch_certificate_signing_request) | **PATCH** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | +*CertificatesV1alpha1Api* | [**read_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#read_certificate_signing_request) | **GET** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | +*CertificatesV1alpha1Api* | [**replace_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#replace_certificate_signing_request) | **PUT** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | +*CertificatesV1alpha1Api* | [**replace_certificate_signing_request_approval**](docs/CertificatesV1alpha1Api.md#replace_certificate_signing_request_approval) | **PUT** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/approval | +*CertificatesV1alpha1Api* | [**replace_certificate_signing_request_status**](docs/CertificatesV1alpha1Api.md#replace_certificate_signing_request_status) | **PUT** /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status | +*CertificatesV1alpha1Api* | [**watch_certificate_signing_request**](docs/CertificatesV1alpha1Api.md#watch_certificate_signing_request) | **GET** /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests/{name} | +*CertificatesV1alpha1Api* | [**watch_certificate_signing_request_list**](docs/CertificatesV1alpha1Api.md#watch_certificate_signing_request_list) | **GET** /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests | +*CoreApi* | [**get_api_versions**](docs/CoreApi.md#get_api_versions) | **GET** /api/ | +*CoreV1Api* | [**connect_delete_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_delete_namespaced_pod_proxy) | **DELETE** /api/v1/namespaces/{namespace}/pods/{name}/proxy | +*CoreV1Api* | [**connect_delete_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_delete_namespaced_pod_proxy_with_path) | **DELETE** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | +*CoreV1Api* | [**connect_delete_namespaced_service_proxy**](docs/CoreV1Api.md#connect_delete_namespaced_service_proxy) | **DELETE** /api/v1/namespaces/{namespace}/services/{name}/proxy | +*CoreV1Api* | [**connect_delete_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_delete_namespaced_service_proxy_with_path) | **DELETE** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | +*CoreV1Api* | [**connect_delete_node_proxy**](docs/CoreV1Api.md#connect_delete_node_proxy) | **DELETE** /api/v1/nodes/{name}/proxy | +*CoreV1Api* | [**connect_delete_node_proxy_with_path**](docs/CoreV1Api.md#connect_delete_node_proxy_with_path) | **DELETE** /api/v1/nodes/{name}/proxy/{path} | +*CoreV1Api* | [**connect_get_namespaced_pod_attach**](docs/CoreV1Api.md#connect_get_namespaced_pod_attach) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/attach | +*CoreV1Api* | [**connect_get_namespaced_pod_exec**](docs/CoreV1Api.md#connect_get_namespaced_pod_exec) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/exec | +*CoreV1Api* | [**connect_get_namespaced_pod_portforward**](docs/CoreV1Api.md#connect_get_namespaced_pod_portforward) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/portforward | +*CoreV1Api* | [**connect_get_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_get_namespaced_pod_proxy) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/proxy | +*CoreV1Api* | [**connect_get_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_get_namespaced_pod_proxy_with_path) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | +*CoreV1Api* | [**connect_get_namespaced_service_proxy**](docs/CoreV1Api.md#connect_get_namespaced_service_proxy) | **GET** /api/v1/namespaces/{namespace}/services/{name}/proxy | +*CoreV1Api* | [**connect_get_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_get_namespaced_service_proxy_with_path) | **GET** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | +*CoreV1Api* | [**connect_get_node_proxy**](docs/CoreV1Api.md#connect_get_node_proxy) | **GET** /api/v1/nodes/{name}/proxy | +*CoreV1Api* | [**connect_get_node_proxy_with_path**](docs/CoreV1Api.md#connect_get_node_proxy_with_path) | **GET** /api/v1/nodes/{name}/proxy/{path} | +*CoreV1Api* | [**connect_head_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_head_namespaced_pod_proxy) | **HEAD** /api/v1/namespaces/{namespace}/pods/{name}/proxy | +*CoreV1Api* | [**connect_head_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_head_namespaced_pod_proxy_with_path) | **HEAD** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | +*CoreV1Api* | [**connect_head_namespaced_service_proxy**](docs/CoreV1Api.md#connect_head_namespaced_service_proxy) | **HEAD** /api/v1/namespaces/{namespace}/services/{name}/proxy | +*CoreV1Api* | [**connect_head_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_head_namespaced_service_proxy_with_path) | **HEAD** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | +*CoreV1Api* | [**connect_head_node_proxy**](docs/CoreV1Api.md#connect_head_node_proxy) | **HEAD** /api/v1/nodes/{name}/proxy | +*CoreV1Api* | [**connect_head_node_proxy_with_path**](docs/CoreV1Api.md#connect_head_node_proxy_with_path) | **HEAD** /api/v1/nodes/{name}/proxy/{path} | +*CoreV1Api* | [**connect_options_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_options_namespaced_pod_proxy) | **OPTIONS** /api/v1/namespaces/{namespace}/pods/{name}/proxy | +*CoreV1Api* | [**connect_options_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_options_namespaced_pod_proxy_with_path) | **OPTIONS** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | +*CoreV1Api* | [**connect_options_namespaced_service_proxy**](docs/CoreV1Api.md#connect_options_namespaced_service_proxy) | **OPTIONS** /api/v1/namespaces/{namespace}/services/{name}/proxy | +*CoreV1Api* | [**connect_options_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_options_namespaced_service_proxy_with_path) | **OPTIONS** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | +*CoreV1Api* | [**connect_options_node_proxy**](docs/CoreV1Api.md#connect_options_node_proxy) | **OPTIONS** /api/v1/nodes/{name}/proxy | +*CoreV1Api* | [**connect_options_node_proxy_with_path**](docs/CoreV1Api.md#connect_options_node_proxy_with_path) | **OPTIONS** /api/v1/nodes/{name}/proxy/{path} | +*CoreV1Api* | [**connect_post_namespaced_pod_attach**](docs/CoreV1Api.md#connect_post_namespaced_pod_attach) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/attach | +*CoreV1Api* | [**connect_post_namespaced_pod_exec**](docs/CoreV1Api.md#connect_post_namespaced_pod_exec) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/exec | +*CoreV1Api* | [**connect_post_namespaced_pod_portforward**](docs/CoreV1Api.md#connect_post_namespaced_pod_portforward) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/portforward | +*CoreV1Api* | [**connect_post_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_post_namespaced_pod_proxy) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/proxy | +*CoreV1Api* | [**connect_post_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_post_namespaced_pod_proxy_with_path) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | +*CoreV1Api* | [**connect_post_namespaced_service_proxy**](docs/CoreV1Api.md#connect_post_namespaced_service_proxy) | **POST** /api/v1/namespaces/{namespace}/services/{name}/proxy | +*CoreV1Api* | [**connect_post_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_post_namespaced_service_proxy_with_path) | **POST** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | +*CoreV1Api* | [**connect_post_node_proxy**](docs/CoreV1Api.md#connect_post_node_proxy) | **POST** /api/v1/nodes/{name}/proxy | +*CoreV1Api* | [**connect_post_node_proxy_with_path**](docs/CoreV1Api.md#connect_post_node_proxy_with_path) | **POST** /api/v1/nodes/{name}/proxy/{path} | +*CoreV1Api* | [**connect_put_namespaced_pod_proxy**](docs/CoreV1Api.md#connect_put_namespaced_pod_proxy) | **PUT** /api/v1/namespaces/{namespace}/pods/{name}/proxy | +*CoreV1Api* | [**connect_put_namespaced_pod_proxy_with_path**](docs/CoreV1Api.md#connect_put_namespaced_pod_proxy_with_path) | **PUT** /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | +*CoreV1Api* | [**connect_put_namespaced_service_proxy**](docs/CoreV1Api.md#connect_put_namespaced_service_proxy) | **PUT** /api/v1/namespaces/{namespace}/services/{name}/proxy | +*CoreV1Api* | [**connect_put_namespaced_service_proxy_with_path**](docs/CoreV1Api.md#connect_put_namespaced_service_proxy_with_path) | **PUT** /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | +*CoreV1Api* | [**connect_put_node_proxy**](docs/CoreV1Api.md#connect_put_node_proxy) | **PUT** /api/v1/nodes/{name}/proxy | +*CoreV1Api* | [**connect_put_node_proxy_with_path**](docs/CoreV1Api.md#connect_put_node_proxy_with_path) | **PUT** /api/v1/nodes/{name}/proxy/{path} | +*CoreV1Api* | [**create_namespace**](docs/CoreV1Api.md#create_namespace) | **POST** /api/v1/namespaces | +*CoreV1Api* | [**create_namespaced_binding**](docs/CoreV1Api.md#create_namespaced_binding) | **POST** /api/v1/namespaces/{namespace}/bindings | +*CoreV1Api* | [**create_namespaced_binding_binding**](docs/CoreV1Api.md#create_namespaced_binding_binding) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/binding | +*CoreV1Api* | [**create_namespaced_config_map**](docs/CoreV1Api.md#create_namespaced_config_map) | **POST** /api/v1/namespaces/{namespace}/configmaps | +*CoreV1Api* | [**create_namespaced_endpoints**](docs/CoreV1Api.md#create_namespaced_endpoints) | **POST** /api/v1/namespaces/{namespace}/endpoints | +*CoreV1Api* | [**create_namespaced_event**](docs/CoreV1Api.md#create_namespaced_event) | **POST** /api/v1/namespaces/{namespace}/events | +*CoreV1Api* | [**create_namespaced_eviction_eviction**](docs/CoreV1Api.md#create_namespaced_eviction_eviction) | **POST** /api/v1/namespaces/{namespace}/pods/{name}/eviction | +*CoreV1Api* | [**create_namespaced_limit_range**](docs/CoreV1Api.md#create_namespaced_limit_range) | **POST** /api/v1/namespaces/{namespace}/limitranges | +*CoreV1Api* | [**create_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#create_namespaced_persistent_volume_claim) | **POST** /api/v1/namespaces/{namespace}/persistentvolumeclaims | +*CoreV1Api* | [**create_namespaced_pod**](docs/CoreV1Api.md#create_namespaced_pod) | **POST** /api/v1/namespaces/{namespace}/pods | +*CoreV1Api* | [**create_namespaced_pod_template**](docs/CoreV1Api.md#create_namespaced_pod_template) | **POST** /api/v1/namespaces/{namespace}/podtemplates | +*CoreV1Api* | [**create_namespaced_replication_controller**](docs/CoreV1Api.md#create_namespaced_replication_controller) | **POST** /api/v1/namespaces/{namespace}/replicationcontrollers | +*CoreV1Api* | [**create_namespaced_resource_quota**](docs/CoreV1Api.md#create_namespaced_resource_quota) | **POST** /api/v1/namespaces/{namespace}/resourcequotas | +*CoreV1Api* | [**create_namespaced_secret**](docs/CoreV1Api.md#create_namespaced_secret) | **POST** /api/v1/namespaces/{namespace}/secrets | +*CoreV1Api* | [**create_namespaced_service**](docs/CoreV1Api.md#create_namespaced_service) | **POST** /api/v1/namespaces/{namespace}/services | +*CoreV1Api* | [**create_namespaced_service_account**](docs/CoreV1Api.md#create_namespaced_service_account) | **POST** /api/v1/namespaces/{namespace}/serviceaccounts | +*CoreV1Api* | [**create_node**](docs/CoreV1Api.md#create_node) | **POST** /api/v1/nodes | +*CoreV1Api* | [**create_persistent_volume**](docs/CoreV1Api.md#create_persistent_volume) | **POST** /api/v1/persistentvolumes | +*CoreV1Api* | [**delete_collection_namespace**](docs/CoreV1Api.md#delete_collection_namespace) | **DELETE** /api/v1/namespaces | +*CoreV1Api* | [**delete_collection_namespaced_config_map**](docs/CoreV1Api.md#delete_collection_namespaced_config_map) | **DELETE** /api/v1/namespaces/{namespace}/configmaps | +*CoreV1Api* | [**delete_collection_namespaced_endpoints**](docs/CoreV1Api.md#delete_collection_namespaced_endpoints) | **DELETE** /api/v1/namespaces/{namespace}/endpoints | +*CoreV1Api* | [**delete_collection_namespaced_event**](docs/CoreV1Api.md#delete_collection_namespaced_event) | **DELETE** /api/v1/namespaces/{namespace}/events | +*CoreV1Api* | [**delete_collection_namespaced_limit_range**](docs/CoreV1Api.md#delete_collection_namespaced_limit_range) | **DELETE** /api/v1/namespaces/{namespace}/limitranges | +*CoreV1Api* | [**delete_collection_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#delete_collection_namespaced_persistent_volume_claim) | **DELETE** /api/v1/namespaces/{namespace}/persistentvolumeclaims | +*CoreV1Api* | [**delete_collection_namespaced_pod**](docs/CoreV1Api.md#delete_collection_namespaced_pod) | **DELETE** /api/v1/namespaces/{namespace}/pods | +*CoreV1Api* | [**delete_collection_namespaced_pod_template**](docs/CoreV1Api.md#delete_collection_namespaced_pod_template) | **DELETE** /api/v1/namespaces/{namespace}/podtemplates | +*CoreV1Api* | [**delete_collection_namespaced_replication_controller**](docs/CoreV1Api.md#delete_collection_namespaced_replication_controller) | **DELETE** /api/v1/namespaces/{namespace}/replicationcontrollers | +*CoreV1Api* | [**delete_collection_namespaced_resource_quota**](docs/CoreV1Api.md#delete_collection_namespaced_resource_quota) | **DELETE** /api/v1/namespaces/{namespace}/resourcequotas | +*CoreV1Api* | [**delete_collection_namespaced_secret**](docs/CoreV1Api.md#delete_collection_namespaced_secret) | **DELETE** /api/v1/namespaces/{namespace}/secrets | +*CoreV1Api* | [**delete_collection_namespaced_service_account**](docs/CoreV1Api.md#delete_collection_namespaced_service_account) | **DELETE** /api/v1/namespaces/{namespace}/serviceaccounts | +*CoreV1Api* | [**delete_collection_node**](docs/CoreV1Api.md#delete_collection_node) | **DELETE** /api/v1/nodes | +*CoreV1Api* | [**delete_collection_persistent_volume**](docs/CoreV1Api.md#delete_collection_persistent_volume) | **DELETE** /api/v1/persistentvolumes | +*CoreV1Api* | [**delete_namespace**](docs/CoreV1Api.md#delete_namespace) | **DELETE** /api/v1/namespaces/{name} | +*CoreV1Api* | [**delete_namespaced_config_map**](docs/CoreV1Api.md#delete_namespaced_config_map) | **DELETE** /api/v1/namespaces/{namespace}/configmaps/{name} | +*CoreV1Api* | [**delete_namespaced_endpoints**](docs/CoreV1Api.md#delete_namespaced_endpoints) | **DELETE** /api/v1/namespaces/{namespace}/endpoints/{name} | +*CoreV1Api* | [**delete_namespaced_event**](docs/CoreV1Api.md#delete_namespaced_event) | **DELETE** /api/v1/namespaces/{namespace}/events/{name} | +*CoreV1Api* | [**delete_namespaced_limit_range**](docs/CoreV1Api.md#delete_namespaced_limit_range) | **DELETE** /api/v1/namespaces/{namespace}/limitranges/{name} | +*CoreV1Api* | [**delete_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#delete_namespaced_persistent_volume_claim) | **DELETE** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | +*CoreV1Api* | [**delete_namespaced_pod**](docs/CoreV1Api.md#delete_namespaced_pod) | **DELETE** /api/v1/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**delete_namespaced_pod_template**](docs/CoreV1Api.md#delete_namespaced_pod_template) | **DELETE** /api/v1/namespaces/{namespace}/podtemplates/{name} | +*CoreV1Api* | [**delete_namespaced_replication_controller**](docs/CoreV1Api.md#delete_namespaced_replication_controller) | **DELETE** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | +*CoreV1Api* | [**delete_namespaced_resource_quota**](docs/CoreV1Api.md#delete_namespaced_resource_quota) | **DELETE** /api/v1/namespaces/{namespace}/resourcequotas/{name} | +*CoreV1Api* | [**delete_namespaced_secret**](docs/CoreV1Api.md#delete_namespaced_secret) | **DELETE** /api/v1/namespaces/{namespace}/secrets/{name} | +*CoreV1Api* | [**delete_namespaced_service**](docs/CoreV1Api.md#delete_namespaced_service) | **DELETE** /api/v1/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**delete_namespaced_service_account**](docs/CoreV1Api.md#delete_namespaced_service_account) | **DELETE** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | +*CoreV1Api* | [**delete_node**](docs/CoreV1Api.md#delete_node) | **DELETE** /api/v1/nodes/{name} | +*CoreV1Api* | [**delete_persistent_volume**](docs/CoreV1Api.md#delete_persistent_volume) | **DELETE** /api/v1/persistentvolumes/{name} | +*CoreV1Api* | [**get_api_resources**](docs/CoreV1Api.md#get_api_resources) | **GET** /api/v1/ | +*CoreV1Api* | [**list_component_status**](docs/CoreV1Api.md#list_component_status) | **GET** /api/v1/componentstatuses | +*CoreV1Api* | [**list_config_map_for_all_namespaces**](docs/CoreV1Api.md#list_config_map_for_all_namespaces) | **GET** /api/v1/configmaps | +*CoreV1Api* | [**list_endpoints_for_all_namespaces**](docs/CoreV1Api.md#list_endpoints_for_all_namespaces) | **GET** /api/v1/endpoints | +*CoreV1Api* | [**list_event_for_all_namespaces**](docs/CoreV1Api.md#list_event_for_all_namespaces) | **GET** /api/v1/events | +*CoreV1Api* | [**list_limit_range_for_all_namespaces**](docs/CoreV1Api.md#list_limit_range_for_all_namespaces) | **GET** /api/v1/limitranges | +*CoreV1Api* | [**list_namespace**](docs/CoreV1Api.md#list_namespace) | **GET** /api/v1/namespaces | +*CoreV1Api* | [**list_namespaced_config_map**](docs/CoreV1Api.md#list_namespaced_config_map) | **GET** /api/v1/namespaces/{namespace}/configmaps | +*CoreV1Api* | [**list_namespaced_endpoints**](docs/CoreV1Api.md#list_namespaced_endpoints) | **GET** /api/v1/namespaces/{namespace}/endpoints | +*CoreV1Api* | [**list_namespaced_event**](docs/CoreV1Api.md#list_namespaced_event) | **GET** /api/v1/namespaces/{namespace}/events | +*CoreV1Api* | [**list_namespaced_limit_range**](docs/CoreV1Api.md#list_namespaced_limit_range) | **GET** /api/v1/namespaces/{namespace}/limitranges | +*CoreV1Api* | [**list_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#list_namespaced_persistent_volume_claim) | **GET** /api/v1/namespaces/{namespace}/persistentvolumeclaims | +*CoreV1Api* | [**list_namespaced_pod**](docs/CoreV1Api.md#list_namespaced_pod) | **GET** /api/v1/namespaces/{namespace}/pods | +*CoreV1Api* | [**list_namespaced_pod_template**](docs/CoreV1Api.md#list_namespaced_pod_template) | **GET** /api/v1/namespaces/{namespace}/podtemplates | +*CoreV1Api* | [**list_namespaced_replication_controller**](docs/CoreV1Api.md#list_namespaced_replication_controller) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers | +*CoreV1Api* | [**list_namespaced_resource_quota**](docs/CoreV1Api.md#list_namespaced_resource_quota) | **GET** /api/v1/namespaces/{namespace}/resourcequotas | +*CoreV1Api* | [**list_namespaced_secret**](docs/CoreV1Api.md#list_namespaced_secret) | **GET** /api/v1/namespaces/{namespace}/secrets | +*CoreV1Api* | [**list_namespaced_service**](docs/CoreV1Api.md#list_namespaced_service) | **GET** /api/v1/namespaces/{namespace}/services | +*CoreV1Api* | [**list_namespaced_service_account**](docs/CoreV1Api.md#list_namespaced_service_account) | **GET** /api/v1/namespaces/{namespace}/serviceaccounts | +*CoreV1Api* | [**list_node**](docs/CoreV1Api.md#list_node) | **GET** /api/v1/nodes | +*CoreV1Api* | [**list_persistent_volume**](docs/CoreV1Api.md#list_persistent_volume) | **GET** /api/v1/persistentvolumes | +*CoreV1Api* | [**list_persistent_volume_claim_for_all_namespaces**](docs/CoreV1Api.md#list_persistent_volume_claim_for_all_namespaces) | **GET** /api/v1/persistentvolumeclaims | +*CoreV1Api* | [**list_pod_for_all_namespaces**](docs/CoreV1Api.md#list_pod_for_all_namespaces) | **GET** /api/v1/pods | +*CoreV1Api* | [**list_pod_template_for_all_namespaces**](docs/CoreV1Api.md#list_pod_template_for_all_namespaces) | **GET** /api/v1/podtemplates | +*CoreV1Api* | [**list_replication_controller_for_all_namespaces**](docs/CoreV1Api.md#list_replication_controller_for_all_namespaces) | **GET** /api/v1/replicationcontrollers | +*CoreV1Api* | [**list_resource_quota_for_all_namespaces**](docs/CoreV1Api.md#list_resource_quota_for_all_namespaces) | **GET** /api/v1/resourcequotas | +*CoreV1Api* | [**list_secret_for_all_namespaces**](docs/CoreV1Api.md#list_secret_for_all_namespaces) | **GET** /api/v1/secrets | +*CoreV1Api* | [**list_service_account_for_all_namespaces**](docs/CoreV1Api.md#list_service_account_for_all_namespaces) | **GET** /api/v1/serviceaccounts | +*CoreV1Api* | [**list_service_for_all_namespaces**](docs/CoreV1Api.md#list_service_for_all_namespaces) | **GET** /api/v1/services | +*CoreV1Api* | [**patch_namespace**](docs/CoreV1Api.md#patch_namespace) | **PATCH** /api/v1/namespaces/{name} | +*CoreV1Api* | [**patch_namespace_status**](docs/CoreV1Api.md#patch_namespace_status) | **PATCH** /api/v1/namespaces/{name}/status | +*CoreV1Api* | [**patch_namespaced_config_map**](docs/CoreV1Api.md#patch_namespaced_config_map) | **PATCH** /api/v1/namespaces/{namespace}/configmaps/{name} | +*CoreV1Api* | [**patch_namespaced_endpoints**](docs/CoreV1Api.md#patch_namespaced_endpoints) | **PATCH** /api/v1/namespaces/{namespace}/endpoints/{name} | +*CoreV1Api* | [**patch_namespaced_event**](docs/CoreV1Api.md#patch_namespaced_event) | **PATCH** /api/v1/namespaces/{namespace}/events/{name} | +*CoreV1Api* | [**patch_namespaced_limit_range**](docs/CoreV1Api.md#patch_namespaced_limit_range) | **PATCH** /api/v1/namespaces/{namespace}/limitranges/{name} | +*CoreV1Api* | [**patch_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#patch_namespaced_persistent_volume_claim) | **PATCH** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | +*CoreV1Api* | [**patch_namespaced_persistent_volume_claim_status**](docs/CoreV1Api.md#patch_namespaced_persistent_volume_claim_status) | **PATCH** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status | +*CoreV1Api* | [**patch_namespaced_pod**](docs/CoreV1Api.md#patch_namespaced_pod) | **PATCH** /api/v1/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**patch_namespaced_pod_status**](docs/CoreV1Api.md#patch_namespaced_pod_status) | **PATCH** /api/v1/namespaces/{namespace}/pods/{name}/status | +*CoreV1Api* | [**patch_namespaced_pod_template**](docs/CoreV1Api.md#patch_namespaced_pod_template) | **PATCH** /api/v1/namespaces/{namespace}/podtemplates/{name} | +*CoreV1Api* | [**patch_namespaced_replication_controller**](docs/CoreV1Api.md#patch_namespaced_replication_controller) | **PATCH** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | +*CoreV1Api* | [**patch_namespaced_replication_controller_status**](docs/CoreV1Api.md#patch_namespaced_replication_controller_status) | **PATCH** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | +*CoreV1Api* | [**patch_namespaced_resource_quota**](docs/CoreV1Api.md#patch_namespaced_resource_quota) | **PATCH** /api/v1/namespaces/{namespace}/resourcequotas/{name} | +*CoreV1Api* | [**patch_namespaced_resource_quota_status**](docs/CoreV1Api.md#patch_namespaced_resource_quota_status) | **PATCH** /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | +*CoreV1Api* | [**patch_namespaced_scale_scale**](docs/CoreV1Api.md#patch_namespaced_scale_scale) | **PATCH** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | +*CoreV1Api* | [**patch_namespaced_secret**](docs/CoreV1Api.md#patch_namespaced_secret) | **PATCH** /api/v1/namespaces/{namespace}/secrets/{name} | +*CoreV1Api* | [**patch_namespaced_service**](docs/CoreV1Api.md#patch_namespaced_service) | **PATCH** /api/v1/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**patch_namespaced_service_account**](docs/CoreV1Api.md#patch_namespaced_service_account) | **PATCH** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | +*CoreV1Api* | [**patch_namespaced_service_status**](docs/CoreV1Api.md#patch_namespaced_service_status) | **PATCH** /api/v1/namespaces/{namespace}/services/{name}/status | +*CoreV1Api* | [**patch_node**](docs/CoreV1Api.md#patch_node) | **PATCH** /api/v1/nodes/{name} | +*CoreV1Api* | [**patch_node_status**](docs/CoreV1Api.md#patch_node_status) | **PATCH** /api/v1/nodes/{name}/status | +*CoreV1Api* | [**patch_persistent_volume**](docs/CoreV1Api.md#patch_persistent_volume) | **PATCH** /api/v1/persistentvolumes/{name} | +*CoreV1Api* | [**patch_persistent_volume_status**](docs/CoreV1Api.md#patch_persistent_volume_status) | **PATCH** /api/v1/persistentvolumes/{name}/status | +*CoreV1Api* | [**proxy_delete_namespaced_pod**](docs/CoreV1Api.md#proxy_delete_namespaced_pod) | **DELETE** /api/v1/proxy/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**proxy_delete_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_delete_namespaced_pod_with_path) | **DELETE** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | +*CoreV1Api* | [**proxy_delete_namespaced_service**](docs/CoreV1Api.md#proxy_delete_namespaced_service) | **DELETE** /api/v1/proxy/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**proxy_delete_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_delete_namespaced_service_with_path) | **DELETE** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | +*CoreV1Api* | [**proxy_delete_node**](docs/CoreV1Api.md#proxy_delete_node) | **DELETE** /api/v1/proxy/nodes/{name} | +*CoreV1Api* | [**proxy_delete_node_with_path**](docs/CoreV1Api.md#proxy_delete_node_with_path) | **DELETE** /api/v1/proxy/nodes/{name}/{path} | +*CoreV1Api* | [**proxy_get_namespaced_pod**](docs/CoreV1Api.md#proxy_get_namespaced_pod) | **GET** /api/v1/proxy/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**proxy_get_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_get_namespaced_pod_with_path) | **GET** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | +*CoreV1Api* | [**proxy_get_namespaced_service**](docs/CoreV1Api.md#proxy_get_namespaced_service) | **GET** /api/v1/proxy/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**proxy_get_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_get_namespaced_service_with_path) | **GET** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | +*CoreV1Api* | [**proxy_get_node**](docs/CoreV1Api.md#proxy_get_node) | **GET** /api/v1/proxy/nodes/{name} | +*CoreV1Api* | [**proxy_get_node_with_path**](docs/CoreV1Api.md#proxy_get_node_with_path) | **GET** /api/v1/proxy/nodes/{name}/{path} | +*CoreV1Api* | [**proxy_head_namespaced_pod**](docs/CoreV1Api.md#proxy_head_namespaced_pod) | **HEAD** /api/v1/proxy/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**proxy_head_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_head_namespaced_pod_with_path) | **HEAD** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | +*CoreV1Api* | [**proxy_head_namespaced_service**](docs/CoreV1Api.md#proxy_head_namespaced_service) | **HEAD** /api/v1/proxy/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**proxy_head_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_head_namespaced_service_with_path) | **HEAD** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | +*CoreV1Api* | [**proxy_head_node**](docs/CoreV1Api.md#proxy_head_node) | **HEAD** /api/v1/proxy/nodes/{name} | +*CoreV1Api* | [**proxy_head_node_with_path**](docs/CoreV1Api.md#proxy_head_node_with_path) | **HEAD** /api/v1/proxy/nodes/{name}/{path} | +*CoreV1Api* | [**proxy_options_namespaced_pod**](docs/CoreV1Api.md#proxy_options_namespaced_pod) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**proxy_options_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_options_namespaced_pod_with_path) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | +*CoreV1Api* | [**proxy_options_namespaced_service**](docs/CoreV1Api.md#proxy_options_namespaced_service) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**proxy_options_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_options_namespaced_service_with_path) | **OPTIONS** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | +*CoreV1Api* | [**proxy_options_node**](docs/CoreV1Api.md#proxy_options_node) | **OPTIONS** /api/v1/proxy/nodes/{name} | +*CoreV1Api* | [**proxy_options_node_with_path**](docs/CoreV1Api.md#proxy_options_node_with_path) | **OPTIONS** /api/v1/proxy/nodes/{name}/{path} | +*CoreV1Api* | [**proxy_post_namespaced_pod**](docs/CoreV1Api.md#proxy_post_namespaced_pod) | **POST** /api/v1/proxy/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**proxy_post_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_post_namespaced_pod_with_path) | **POST** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | +*CoreV1Api* | [**proxy_post_namespaced_service**](docs/CoreV1Api.md#proxy_post_namespaced_service) | **POST** /api/v1/proxy/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**proxy_post_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_post_namespaced_service_with_path) | **POST** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | +*CoreV1Api* | [**proxy_post_node**](docs/CoreV1Api.md#proxy_post_node) | **POST** /api/v1/proxy/nodes/{name} | +*CoreV1Api* | [**proxy_post_node_with_path**](docs/CoreV1Api.md#proxy_post_node_with_path) | **POST** /api/v1/proxy/nodes/{name}/{path} | +*CoreV1Api* | [**proxy_put_namespaced_pod**](docs/CoreV1Api.md#proxy_put_namespaced_pod) | **PUT** /api/v1/proxy/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**proxy_put_namespaced_pod_with_path**](docs/CoreV1Api.md#proxy_put_namespaced_pod_with_path) | **PUT** /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | +*CoreV1Api* | [**proxy_put_namespaced_service**](docs/CoreV1Api.md#proxy_put_namespaced_service) | **PUT** /api/v1/proxy/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**proxy_put_namespaced_service_with_path**](docs/CoreV1Api.md#proxy_put_namespaced_service_with_path) | **PUT** /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | +*CoreV1Api* | [**proxy_put_node**](docs/CoreV1Api.md#proxy_put_node) | **PUT** /api/v1/proxy/nodes/{name} | +*CoreV1Api* | [**proxy_put_node_with_path**](docs/CoreV1Api.md#proxy_put_node_with_path) | **PUT** /api/v1/proxy/nodes/{name}/{path} | +*CoreV1Api* | [**read_component_status**](docs/CoreV1Api.md#read_component_status) | **GET** /api/v1/componentstatuses/{name} | +*CoreV1Api* | [**read_namespace**](docs/CoreV1Api.md#read_namespace) | **GET** /api/v1/namespaces/{name} | +*CoreV1Api* | [**read_namespace_status**](docs/CoreV1Api.md#read_namespace_status) | **GET** /api/v1/namespaces/{name}/status | +*CoreV1Api* | [**read_namespaced_config_map**](docs/CoreV1Api.md#read_namespaced_config_map) | **GET** /api/v1/namespaces/{namespace}/configmaps/{name} | +*CoreV1Api* | [**read_namespaced_endpoints**](docs/CoreV1Api.md#read_namespaced_endpoints) | **GET** /api/v1/namespaces/{namespace}/endpoints/{name} | +*CoreV1Api* | [**read_namespaced_event**](docs/CoreV1Api.md#read_namespaced_event) | **GET** /api/v1/namespaces/{namespace}/events/{name} | +*CoreV1Api* | [**read_namespaced_limit_range**](docs/CoreV1Api.md#read_namespaced_limit_range) | **GET** /api/v1/namespaces/{namespace}/limitranges/{name} | +*CoreV1Api* | [**read_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#read_namespaced_persistent_volume_claim) | **GET** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | +*CoreV1Api* | [**read_namespaced_persistent_volume_claim_status**](docs/CoreV1Api.md#read_namespaced_persistent_volume_claim_status) | **GET** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status | +*CoreV1Api* | [**read_namespaced_pod**](docs/CoreV1Api.md#read_namespaced_pod) | **GET** /api/v1/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**read_namespaced_pod_log**](docs/CoreV1Api.md#read_namespaced_pod_log) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/log | +*CoreV1Api* | [**read_namespaced_pod_status**](docs/CoreV1Api.md#read_namespaced_pod_status) | **GET** /api/v1/namespaces/{namespace}/pods/{name}/status | +*CoreV1Api* | [**read_namespaced_pod_template**](docs/CoreV1Api.md#read_namespaced_pod_template) | **GET** /api/v1/namespaces/{namespace}/podtemplates/{name} | +*CoreV1Api* | [**read_namespaced_replication_controller**](docs/CoreV1Api.md#read_namespaced_replication_controller) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | +*CoreV1Api* | [**read_namespaced_replication_controller_status**](docs/CoreV1Api.md#read_namespaced_replication_controller_status) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | +*CoreV1Api* | [**read_namespaced_resource_quota**](docs/CoreV1Api.md#read_namespaced_resource_quota) | **GET** /api/v1/namespaces/{namespace}/resourcequotas/{name} | +*CoreV1Api* | [**read_namespaced_resource_quota_status**](docs/CoreV1Api.md#read_namespaced_resource_quota_status) | **GET** /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | +*CoreV1Api* | [**read_namespaced_scale_scale**](docs/CoreV1Api.md#read_namespaced_scale_scale) | **GET** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | +*CoreV1Api* | [**read_namespaced_secret**](docs/CoreV1Api.md#read_namespaced_secret) | **GET** /api/v1/namespaces/{namespace}/secrets/{name} | +*CoreV1Api* | [**read_namespaced_service**](docs/CoreV1Api.md#read_namespaced_service) | **GET** /api/v1/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**read_namespaced_service_account**](docs/CoreV1Api.md#read_namespaced_service_account) | **GET** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | +*CoreV1Api* | [**read_namespaced_service_status**](docs/CoreV1Api.md#read_namespaced_service_status) | **GET** /api/v1/namespaces/{namespace}/services/{name}/status | +*CoreV1Api* | [**read_node**](docs/CoreV1Api.md#read_node) | **GET** /api/v1/nodes/{name} | +*CoreV1Api* | [**read_node_status**](docs/CoreV1Api.md#read_node_status) | **GET** /api/v1/nodes/{name}/status | +*CoreV1Api* | [**read_persistent_volume**](docs/CoreV1Api.md#read_persistent_volume) | **GET** /api/v1/persistentvolumes/{name} | +*CoreV1Api* | [**read_persistent_volume_status**](docs/CoreV1Api.md#read_persistent_volume_status) | **GET** /api/v1/persistentvolumes/{name}/status | +*CoreV1Api* | [**replace_namespace**](docs/CoreV1Api.md#replace_namespace) | **PUT** /api/v1/namespaces/{name} | +*CoreV1Api* | [**replace_namespace_finalize**](docs/CoreV1Api.md#replace_namespace_finalize) | **PUT** /api/v1/namespaces/{name}/finalize | +*CoreV1Api* | [**replace_namespace_status**](docs/CoreV1Api.md#replace_namespace_status) | **PUT** /api/v1/namespaces/{name}/status | +*CoreV1Api* | [**replace_namespaced_config_map**](docs/CoreV1Api.md#replace_namespaced_config_map) | **PUT** /api/v1/namespaces/{namespace}/configmaps/{name} | +*CoreV1Api* | [**replace_namespaced_endpoints**](docs/CoreV1Api.md#replace_namespaced_endpoints) | **PUT** /api/v1/namespaces/{namespace}/endpoints/{name} | +*CoreV1Api* | [**replace_namespaced_event**](docs/CoreV1Api.md#replace_namespaced_event) | **PUT** /api/v1/namespaces/{namespace}/events/{name} | +*CoreV1Api* | [**replace_namespaced_limit_range**](docs/CoreV1Api.md#replace_namespaced_limit_range) | **PUT** /api/v1/namespaces/{namespace}/limitranges/{name} | +*CoreV1Api* | [**replace_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#replace_namespaced_persistent_volume_claim) | **PUT** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | +*CoreV1Api* | [**replace_namespaced_persistent_volume_claim_status**](docs/CoreV1Api.md#replace_namespaced_persistent_volume_claim_status) | **PUT** /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status | +*CoreV1Api* | [**replace_namespaced_pod**](docs/CoreV1Api.md#replace_namespaced_pod) | **PUT** /api/v1/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**replace_namespaced_pod_status**](docs/CoreV1Api.md#replace_namespaced_pod_status) | **PUT** /api/v1/namespaces/{namespace}/pods/{name}/status | +*CoreV1Api* | [**replace_namespaced_pod_template**](docs/CoreV1Api.md#replace_namespaced_pod_template) | **PUT** /api/v1/namespaces/{namespace}/podtemplates/{name} | +*CoreV1Api* | [**replace_namespaced_replication_controller**](docs/CoreV1Api.md#replace_namespaced_replication_controller) | **PUT** /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | +*CoreV1Api* | [**replace_namespaced_replication_controller_status**](docs/CoreV1Api.md#replace_namespaced_replication_controller_status) | **PUT** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | +*CoreV1Api* | [**replace_namespaced_resource_quota**](docs/CoreV1Api.md#replace_namespaced_resource_quota) | **PUT** /api/v1/namespaces/{namespace}/resourcequotas/{name} | +*CoreV1Api* | [**replace_namespaced_resource_quota_status**](docs/CoreV1Api.md#replace_namespaced_resource_quota_status) | **PUT** /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | +*CoreV1Api* | [**replace_namespaced_scale_scale**](docs/CoreV1Api.md#replace_namespaced_scale_scale) | **PUT** /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | +*CoreV1Api* | [**replace_namespaced_secret**](docs/CoreV1Api.md#replace_namespaced_secret) | **PUT** /api/v1/namespaces/{namespace}/secrets/{name} | +*CoreV1Api* | [**replace_namespaced_service**](docs/CoreV1Api.md#replace_namespaced_service) | **PUT** /api/v1/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**replace_namespaced_service_account**](docs/CoreV1Api.md#replace_namespaced_service_account) | **PUT** /api/v1/namespaces/{namespace}/serviceaccounts/{name} | +*CoreV1Api* | [**replace_namespaced_service_status**](docs/CoreV1Api.md#replace_namespaced_service_status) | **PUT** /api/v1/namespaces/{namespace}/services/{name}/status | +*CoreV1Api* | [**replace_node**](docs/CoreV1Api.md#replace_node) | **PUT** /api/v1/nodes/{name} | +*CoreV1Api* | [**replace_node_status**](docs/CoreV1Api.md#replace_node_status) | **PUT** /api/v1/nodes/{name}/status | +*CoreV1Api* | [**replace_persistent_volume**](docs/CoreV1Api.md#replace_persistent_volume) | **PUT** /api/v1/persistentvolumes/{name} | +*CoreV1Api* | [**replace_persistent_volume_status**](docs/CoreV1Api.md#replace_persistent_volume_status) | **PUT** /api/v1/persistentvolumes/{name}/status | +*CoreV1Api* | [**watch_config_map_list_for_all_namespaces**](docs/CoreV1Api.md#watch_config_map_list_for_all_namespaces) | **GET** /api/v1/watch/configmaps | +*CoreV1Api* | [**watch_endpoints_list_for_all_namespaces**](docs/CoreV1Api.md#watch_endpoints_list_for_all_namespaces) | **GET** /api/v1/watch/endpoints | +*CoreV1Api* | [**watch_event_list_for_all_namespaces**](docs/CoreV1Api.md#watch_event_list_for_all_namespaces) | **GET** /api/v1/watch/events | +*CoreV1Api* | [**watch_limit_range_list_for_all_namespaces**](docs/CoreV1Api.md#watch_limit_range_list_for_all_namespaces) | **GET** /api/v1/watch/limitranges | +*CoreV1Api* | [**watch_namespace**](docs/CoreV1Api.md#watch_namespace) | **GET** /api/v1/watch/namespaces/{name} | +*CoreV1Api* | [**watch_namespace_list**](docs/CoreV1Api.md#watch_namespace_list) | **GET** /api/v1/watch/namespaces | +*CoreV1Api* | [**watch_namespaced_config_map**](docs/CoreV1Api.md#watch_namespaced_config_map) | **GET** /api/v1/watch/namespaces/{namespace}/configmaps/{name} | +*CoreV1Api* | [**watch_namespaced_config_map_list**](docs/CoreV1Api.md#watch_namespaced_config_map_list) | **GET** /api/v1/watch/namespaces/{namespace}/configmaps | +*CoreV1Api* | [**watch_namespaced_endpoints**](docs/CoreV1Api.md#watch_namespaced_endpoints) | **GET** /api/v1/watch/namespaces/{namespace}/endpoints/{name} | +*CoreV1Api* | [**watch_namespaced_endpoints_list**](docs/CoreV1Api.md#watch_namespaced_endpoints_list) | **GET** /api/v1/watch/namespaces/{namespace}/endpoints | +*CoreV1Api* | [**watch_namespaced_event**](docs/CoreV1Api.md#watch_namespaced_event) | **GET** /api/v1/watch/namespaces/{namespace}/events/{name} | +*CoreV1Api* | [**watch_namespaced_event_list**](docs/CoreV1Api.md#watch_namespaced_event_list) | **GET** /api/v1/watch/namespaces/{namespace}/events | +*CoreV1Api* | [**watch_namespaced_limit_range**](docs/CoreV1Api.md#watch_namespaced_limit_range) | **GET** /api/v1/watch/namespaces/{namespace}/limitranges/{name} | +*CoreV1Api* | [**watch_namespaced_limit_range_list**](docs/CoreV1Api.md#watch_namespaced_limit_range_list) | **GET** /api/v1/watch/namespaces/{namespace}/limitranges | +*CoreV1Api* | [**watch_namespaced_persistent_volume_claim**](docs/CoreV1Api.md#watch_namespaced_persistent_volume_claim) | **GET** /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name} | +*CoreV1Api* | [**watch_namespaced_persistent_volume_claim_list**](docs/CoreV1Api.md#watch_namespaced_persistent_volume_claim_list) | **GET** /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims | +*CoreV1Api* | [**watch_namespaced_pod**](docs/CoreV1Api.md#watch_namespaced_pod) | **GET** /api/v1/watch/namespaces/{namespace}/pods/{name} | +*CoreV1Api* | [**watch_namespaced_pod_list**](docs/CoreV1Api.md#watch_namespaced_pod_list) | **GET** /api/v1/watch/namespaces/{namespace}/pods | +*CoreV1Api* | [**watch_namespaced_pod_template**](docs/CoreV1Api.md#watch_namespaced_pod_template) | **GET** /api/v1/watch/namespaces/{namespace}/podtemplates/{name} | +*CoreV1Api* | [**watch_namespaced_pod_template_list**](docs/CoreV1Api.md#watch_namespaced_pod_template_list) | **GET** /api/v1/watch/namespaces/{namespace}/podtemplates | +*CoreV1Api* | [**watch_namespaced_replication_controller**](docs/CoreV1Api.md#watch_namespaced_replication_controller) | **GET** /api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name} | +*CoreV1Api* | [**watch_namespaced_replication_controller_list**](docs/CoreV1Api.md#watch_namespaced_replication_controller_list) | **GET** /api/v1/watch/namespaces/{namespace}/replicationcontrollers | +*CoreV1Api* | [**watch_namespaced_resource_quota**](docs/CoreV1Api.md#watch_namespaced_resource_quota) | **GET** /api/v1/watch/namespaces/{namespace}/resourcequotas/{name} | +*CoreV1Api* | [**watch_namespaced_resource_quota_list**](docs/CoreV1Api.md#watch_namespaced_resource_quota_list) | **GET** /api/v1/watch/namespaces/{namespace}/resourcequotas | +*CoreV1Api* | [**watch_namespaced_secret**](docs/CoreV1Api.md#watch_namespaced_secret) | **GET** /api/v1/watch/namespaces/{namespace}/secrets/{name} | +*CoreV1Api* | [**watch_namespaced_secret_list**](docs/CoreV1Api.md#watch_namespaced_secret_list) | **GET** /api/v1/watch/namespaces/{namespace}/secrets | +*CoreV1Api* | [**watch_namespaced_service**](docs/CoreV1Api.md#watch_namespaced_service) | **GET** /api/v1/watch/namespaces/{namespace}/services/{name} | +*CoreV1Api* | [**watch_namespaced_service_account**](docs/CoreV1Api.md#watch_namespaced_service_account) | **GET** /api/v1/watch/namespaces/{namespace}/serviceaccounts/{name} | +*CoreV1Api* | [**watch_namespaced_service_account_list**](docs/CoreV1Api.md#watch_namespaced_service_account_list) | **GET** /api/v1/watch/namespaces/{namespace}/serviceaccounts | +*CoreV1Api* | [**watch_namespaced_service_list**](docs/CoreV1Api.md#watch_namespaced_service_list) | **GET** /api/v1/watch/namespaces/{namespace}/services | +*CoreV1Api* | [**watch_node**](docs/CoreV1Api.md#watch_node) | **GET** /api/v1/watch/nodes/{name} | +*CoreV1Api* | [**watch_node_list**](docs/CoreV1Api.md#watch_node_list) | **GET** /api/v1/watch/nodes | +*CoreV1Api* | [**watch_persistent_volume**](docs/CoreV1Api.md#watch_persistent_volume) | **GET** /api/v1/watch/persistentvolumes/{name} | +*CoreV1Api* | [**watch_persistent_volume_claim_list_for_all_namespaces**](docs/CoreV1Api.md#watch_persistent_volume_claim_list_for_all_namespaces) | **GET** /api/v1/watch/persistentvolumeclaims | +*CoreV1Api* | [**watch_persistent_volume_list**](docs/CoreV1Api.md#watch_persistent_volume_list) | **GET** /api/v1/watch/persistentvolumes | +*CoreV1Api* | [**watch_pod_list_for_all_namespaces**](docs/CoreV1Api.md#watch_pod_list_for_all_namespaces) | **GET** /api/v1/watch/pods | +*CoreV1Api* | [**watch_pod_template_list_for_all_namespaces**](docs/CoreV1Api.md#watch_pod_template_list_for_all_namespaces) | **GET** /api/v1/watch/podtemplates | +*CoreV1Api* | [**watch_replication_controller_list_for_all_namespaces**](docs/CoreV1Api.md#watch_replication_controller_list_for_all_namespaces) | **GET** /api/v1/watch/replicationcontrollers | +*CoreV1Api* | [**watch_resource_quota_list_for_all_namespaces**](docs/CoreV1Api.md#watch_resource_quota_list_for_all_namespaces) | **GET** /api/v1/watch/resourcequotas | +*CoreV1Api* | [**watch_secret_list_for_all_namespaces**](docs/CoreV1Api.md#watch_secret_list_for_all_namespaces) | **GET** /api/v1/watch/secrets | +*CoreV1Api* | [**watch_service_account_list_for_all_namespaces**](docs/CoreV1Api.md#watch_service_account_list_for_all_namespaces) | **GET** /api/v1/watch/serviceaccounts | +*CoreV1Api* | [**watch_service_list_for_all_namespaces**](docs/CoreV1Api.md#watch_service_list_for_all_namespaces) | **GET** /api/v1/watch/services | +*ExtensionsApi* | [**get_api_group**](docs/ExtensionsApi.md#get_api_group) | **GET** /apis/extensions/ | +*ExtensionsV1beta1Api* | [**create_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#create_namespaced_daemon_set) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | +*ExtensionsV1beta1Api* | [**create_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#create_namespaced_deployment) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/deployments | +*ExtensionsV1beta1Api* | [**create_namespaced_deployment_rollback_rollback**](docs/ExtensionsV1beta1Api.md#create_namespaced_deployment_rollback_rollback) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback | +*ExtensionsV1beta1Api* | [**create_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#create_namespaced_horizontal_pod_autoscaler) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | +*ExtensionsV1beta1Api* | [**create_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#create_namespaced_ingress) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | +*ExtensionsV1beta1Api* | [**create_namespaced_job**](docs/ExtensionsV1beta1Api.md#create_namespaced_job) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/jobs | +*ExtensionsV1beta1Api* | [**create_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#create_namespaced_network_policy) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | +*ExtensionsV1beta1Api* | [**create_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#create_namespaced_replica_set) | **POST** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | +*ExtensionsV1beta1Api* | [**create_third_party_resource**](docs/ExtensionsV1beta1Api.md#create_third_party_resource) | **POST** /apis/extensions/v1beta1/thirdpartyresources | +*ExtensionsV1beta1Api* | [**delete_collection_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#delete_collection_namespaced_daemon_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | +*ExtensionsV1beta1Api* | [**delete_collection_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#delete_collection_namespaced_deployment) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/deployments | +*ExtensionsV1beta1Api* | [**delete_collection_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#delete_collection_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | +*ExtensionsV1beta1Api* | [**delete_collection_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#delete_collection_namespaced_ingress) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | +*ExtensionsV1beta1Api* | [**delete_collection_namespaced_job**](docs/ExtensionsV1beta1Api.md#delete_collection_namespaced_job) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/jobs | +*ExtensionsV1beta1Api* | [**delete_collection_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#delete_collection_namespaced_network_policy) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | +*ExtensionsV1beta1Api* | [**delete_collection_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#delete_collection_namespaced_replica_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | +*ExtensionsV1beta1Api* | [**delete_collection_third_party_resource**](docs/ExtensionsV1beta1Api.md#delete_collection_third_party_resource) | **DELETE** /apis/extensions/v1beta1/thirdpartyresources | +*ExtensionsV1beta1Api* | [**delete_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#delete_namespaced_daemon_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | +*ExtensionsV1beta1Api* | [**delete_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#delete_namespaced_deployment) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | +*ExtensionsV1beta1Api* | [**delete_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#delete_namespaced_horizontal_pod_autoscaler) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*ExtensionsV1beta1Api* | [**delete_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#delete_namespaced_ingress) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | +*ExtensionsV1beta1Api* | [**delete_namespaced_job**](docs/ExtensionsV1beta1Api.md#delete_namespaced_job) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | +*ExtensionsV1beta1Api* | [**delete_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#delete_namespaced_network_policy) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | +*ExtensionsV1beta1Api* | [**delete_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#delete_namespaced_replica_set) | **DELETE** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | +*ExtensionsV1beta1Api* | [**delete_third_party_resource**](docs/ExtensionsV1beta1Api.md#delete_third_party_resource) | **DELETE** /apis/extensions/v1beta1/thirdpartyresources/{name} | +*ExtensionsV1beta1Api* | [**get_api_resources**](docs/ExtensionsV1beta1Api.md#get_api_resources) | **GET** /apis/extensions/v1beta1/ | +*ExtensionsV1beta1Api* | [**list_daemon_set_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_daemon_set_for_all_namespaces) | **GET** /apis/extensions/v1beta1/daemonsets | +*ExtensionsV1beta1Api* | [**list_deployment_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_deployment_for_all_namespaces) | **GET** /apis/extensions/v1beta1/deployments | +*ExtensionsV1beta1Api* | [**list_horizontal_pod_autoscaler_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_horizontal_pod_autoscaler_for_all_namespaces) | **GET** /apis/extensions/v1beta1/horizontalpodautoscalers | +*ExtensionsV1beta1Api* | [**list_ingress_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_ingress_for_all_namespaces) | **GET** /apis/extensions/v1beta1/ingresses | +*ExtensionsV1beta1Api* | [**list_job_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_job_for_all_namespaces) | **GET** /apis/extensions/v1beta1/jobs | +*ExtensionsV1beta1Api* | [**list_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#list_namespaced_daemon_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | +*ExtensionsV1beta1Api* | [**list_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#list_namespaced_deployment) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments | +*ExtensionsV1beta1Api* | [**list_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#list_namespaced_horizontal_pod_autoscaler) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | +*ExtensionsV1beta1Api* | [**list_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#list_namespaced_ingress) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | +*ExtensionsV1beta1Api* | [**list_namespaced_job**](docs/ExtensionsV1beta1Api.md#list_namespaced_job) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/jobs | +*ExtensionsV1beta1Api* | [**list_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#list_namespaced_network_policy) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | +*ExtensionsV1beta1Api* | [**list_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#list_namespaced_replica_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | +*ExtensionsV1beta1Api* | [**list_network_policy_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_network_policy_for_all_namespaces) | **GET** /apis/extensions/v1beta1/networkpolicies | +*ExtensionsV1beta1Api* | [**list_replica_set_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#list_replica_set_for_all_namespaces) | **GET** /apis/extensions/v1beta1/replicasets | +*ExtensionsV1beta1Api* | [**list_third_party_resource**](docs/ExtensionsV1beta1Api.md#list_third_party_resource) | **GET** /apis/extensions/v1beta1/thirdpartyresources | +*ExtensionsV1beta1Api* | [**patch_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#patch_namespaced_daemon_set) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | +*ExtensionsV1beta1Api* | [**patch_namespaced_daemon_set_status**](docs/ExtensionsV1beta1Api.md#patch_namespaced_daemon_set_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | +*ExtensionsV1beta1Api* | [**patch_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#patch_namespaced_deployment) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | +*ExtensionsV1beta1Api* | [**patch_namespaced_deployment_status**](docs/ExtensionsV1beta1Api.md#patch_namespaced_deployment_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | +*ExtensionsV1beta1Api* | [**patch_namespaced_deployments_scale**](docs/ExtensionsV1beta1Api.md#patch_namespaced_deployments_scale) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | +*ExtensionsV1beta1Api* | [**patch_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#patch_namespaced_horizontal_pod_autoscaler) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*ExtensionsV1beta1Api* | [**patch_namespaced_horizontal_pod_autoscaler_status**](docs/ExtensionsV1beta1Api.md#patch_namespaced_horizontal_pod_autoscaler_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | +*ExtensionsV1beta1Api* | [**patch_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#patch_namespaced_ingress) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | +*ExtensionsV1beta1Api* | [**patch_namespaced_ingress_status**](docs/ExtensionsV1beta1Api.md#patch_namespaced_ingress_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status | +*ExtensionsV1beta1Api* | [**patch_namespaced_job**](docs/ExtensionsV1beta1Api.md#patch_namespaced_job) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | +*ExtensionsV1beta1Api* | [**patch_namespaced_job_status**](docs/ExtensionsV1beta1Api.md#patch_namespaced_job_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | +*ExtensionsV1beta1Api* | [**patch_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#patch_namespaced_network_policy) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | +*ExtensionsV1beta1Api* | [**patch_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#patch_namespaced_replica_set) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | +*ExtensionsV1beta1Api* | [**patch_namespaced_replica_set_status**](docs/ExtensionsV1beta1Api.md#patch_namespaced_replica_set_status) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | +*ExtensionsV1beta1Api* | [**patch_namespaced_replicasets_scale**](docs/ExtensionsV1beta1Api.md#patch_namespaced_replicasets_scale) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | +*ExtensionsV1beta1Api* | [**patch_namespaced_replicationcontrollers_scale**](docs/ExtensionsV1beta1Api.md#patch_namespaced_replicationcontrollers_scale) | **PATCH** /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | +*ExtensionsV1beta1Api* | [**patch_third_party_resource**](docs/ExtensionsV1beta1Api.md#patch_third_party_resource) | **PATCH** /apis/extensions/v1beta1/thirdpartyresources/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#read_namespaced_daemon_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_daemon_set_status**](docs/ExtensionsV1beta1Api.md#read_namespaced_daemon_set_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | +*ExtensionsV1beta1Api* | [**read_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#read_namespaced_deployment) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_deployment_status**](docs/ExtensionsV1beta1Api.md#read_namespaced_deployment_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | +*ExtensionsV1beta1Api* | [**read_namespaced_deployments_scale**](docs/ExtensionsV1beta1Api.md#read_namespaced_deployments_scale) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | +*ExtensionsV1beta1Api* | [**read_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#read_namespaced_horizontal_pod_autoscaler) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_horizontal_pod_autoscaler_status**](docs/ExtensionsV1beta1Api.md#read_namespaced_horizontal_pod_autoscaler_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | +*ExtensionsV1beta1Api* | [**read_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#read_namespaced_ingress) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_ingress_status**](docs/ExtensionsV1beta1Api.md#read_namespaced_ingress_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status | +*ExtensionsV1beta1Api* | [**read_namespaced_job**](docs/ExtensionsV1beta1Api.md#read_namespaced_job) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_job_status**](docs/ExtensionsV1beta1Api.md#read_namespaced_job_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | +*ExtensionsV1beta1Api* | [**read_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#read_namespaced_network_policy) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#read_namespaced_replica_set) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | +*ExtensionsV1beta1Api* | [**read_namespaced_replica_set_status**](docs/ExtensionsV1beta1Api.md#read_namespaced_replica_set_status) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | +*ExtensionsV1beta1Api* | [**read_namespaced_replicasets_scale**](docs/ExtensionsV1beta1Api.md#read_namespaced_replicasets_scale) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | +*ExtensionsV1beta1Api* | [**read_namespaced_replicationcontrollers_scale**](docs/ExtensionsV1beta1Api.md#read_namespaced_replicationcontrollers_scale) | **GET** /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | +*ExtensionsV1beta1Api* | [**read_third_party_resource**](docs/ExtensionsV1beta1Api.md#read_third_party_resource) | **GET** /apis/extensions/v1beta1/thirdpartyresources/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#replace_namespaced_daemon_set) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_daemon_set_status**](docs/ExtensionsV1beta1Api.md#replace_namespaced_daemon_set_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | +*ExtensionsV1beta1Api* | [**replace_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#replace_namespaced_deployment) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_deployment_status**](docs/ExtensionsV1beta1Api.md#replace_namespaced_deployment_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | +*ExtensionsV1beta1Api* | [**replace_namespaced_deployments_scale**](docs/ExtensionsV1beta1Api.md#replace_namespaced_deployments_scale) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | +*ExtensionsV1beta1Api* | [**replace_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#replace_namespaced_horizontal_pod_autoscaler) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_horizontal_pod_autoscaler_status**](docs/ExtensionsV1beta1Api.md#replace_namespaced_horizontal_pod_autoscaler_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status | +*ExtensionsV1beta1Api* | [**replace_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#replace_namespaced_ingress) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_ingress_status**](docs/ExtensionsV1beta1Api.md#replace_namespaced_ingress_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status | +*ExtensionsV1beta1Api* | [**replace_namespaced_job**](docs/ExtensionsV1beta1Api.md#replace_namespaced_job) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_job_status**](docs/ExtensionsV1beta1Api.md#replace_namespaced_job_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | +*ExtensionsV1beta1Api* | [**replace_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#replace_namespaced_network_policy) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#replace_namespaced_replica_set) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | +*ExtensionsV1beta1Api* | [**replace_namespaced_replica_set_status**](docs/ExtensionsV1beta1Api.md#replace_namespaced_replica_set_status) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | +*ExtensionsV1beta1Api* | [**replace_namespaced_replicasets_scale**](docs/ExtensionsV1beta1Api.md#replace_namespaced_replicasets_scale) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | +*ExtensionsV1beta1Api* | [**replace_namespaced_replicationcontrollers_scale**](docs/ExtensionsV1beta1Api.md#replace_namespaced_replicationcontrollers_scale) | **PUT** /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | +*ExtensionsV1beta1Api* | [**replace_third_party_resource**](docs/ExtensionsV1beta1Api.md#replace_third_party_resource) | **PUT** /apis/extensions/v1beta1/thirdpartyresources/{name} | +*ExtensionsV1beta1Api* | [**watch_daemon_set_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_daemon_set_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/daemonsets | +*ExtensionsV1beta1Api* | [**watch_deployment_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_deployment_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/deployments | +*ExtensionsV1beta1Api* | [**watch_horizontal_pod_autoscaler_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_horizontal_pod_autoscaler_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/horizontalpodautoscalers | +*ExtensionsV1beta1Api* | [**watch_ingress_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_ingress_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/ingresses | +*ExtensionsV1beta1Api* | [**watch_job_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_job_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/jobs | +*ExtensionsV1beta1Api* | [**watch_namespaced_daemon_set**](docs/ExtensionsV1beta1Api.md#watch_namespaced_daemon_set) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets/{name} | +*ExtensionsV1beta1Api* | [**watch_namespaced_daemon_set_list**](docs/ExtensionsV1beta1Api.md#watch_namespaced_daemon_set_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets | +*ExtensionsV1beta1Api* | [**watch_namespaced_deployment**](docs/ExtensionsV1beta1Api.md#watch_namespaced_deployment) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name} | +*ExtensionsV1beta1Api* | [**watch_namespaced_deployment_list**](docs/ExtensionsV1beta1Api.md#watch_namespaced_deployment_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments | +*ExtensionsV1beta1Api* | [**watch_namespaced_horizontal_pod_autoscaler**](docs/ExtensionsV1beta1Api.md#watch_namespaced_horizontal_pod_autoscaler) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name} | +*ExtensionsV1beta1Api* | [**watch_namespaced_horizontal_pod_autoscaler_list**](docs/ExtensionsV1beta1Api.md#watch_namespaced_horizontal_pod_autoscaler_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers | +*ExtensionsV1beta1Api* | [**watch_namespaced_ingress**](docs/ExtensionsV1beta1Api.md#watch_namespaced_ingress) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name} | +*ExtensionsV1beta1Api* | [**watch_namespaced_ingress_list**](docs/ExtensionsV1beta1Api.md#watch_namespaced_ingress_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses | +*ExtensionsV1beta1Api* | [**watch_namespaced_job**](docs/ExtensionsV1beta1Api.md#watch_namespaced_job) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs/{name} | +*ExtensionsV1beta1Api* | [**watch_namespaced_job_list**](docs/ExtensionsV1beta1Api.md#watch_namespaced_job_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs | +*ExtensionsV1beta1Api* | [**watch_namespaced_network_policy**](docs/ExtensionsV1beta1Api.md#watch_namespaced_network_policy) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name} | +*ExtensionsV1beta1Api* | [**watch_namespaced_network_policy_list**](docs/ExtensionsV1beta1Api.md#watch_namespaced_network_policy_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies | +*ExtensionsV1beta1Api* | [**watch_namespaced_replica_set**](docs/ExtensionsV1beta1Api.md#watch_namespaced_replica_set) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name} | +*ExtensionsV1beta1Api* | [**watch_namespaced_replica_set_list**](docs/ExtensionsV1beta1Api.md#watch_namespaced_replica_set_list) | **GET** /apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets | +*ExtensionsV1beta1Api* | [**watch_network_policy_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_network_policy_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/networkpolicies | +*ExtensionsV1beta1Api* | [**watch_replica_set_list_for_all_namespaces**](docs/ExtensionsV1beta1Api.md#watch_replica_set_list_for_all_namespaces) | **GET** /apis/extensions/v1beta1/watch/replicasets | +*ExtensionsV1beta1Api* | [**watch_third_party_resource**](docs/ExtensionsV1beta1Api.md#watch_third_party_resource) | **GET** /apis/extensions/v1beta1/watch/thirdpartyresources/{name} | +*ExtensionsV1beta1Api* | [**watch_third_party_resource_list**](docs/ExtensionsV1beta1Api.md#watch_third_party_resource_list) | **GET** /apis/extensions/v1beta1/watch/thirdpartyresources | +*LogsApi* | [**log_file_handler**](docs/LogsApi.md#log_file_handler) | **GET** /logs/{logpath} | +*LogsApi* | [**log_file_list_handler**](docs/LogsApi.md#log_file_list_handler) | **GET** /logs/ | +*PolicyApi* | [**get_api_group**](docs/PolicyApi.md#get_api_group) | **GET** /apis/policy/ | +*PolicyV1beta1Api* | [**create_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#create_namespaced_pod_disruption_budget) | **POST** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets | +*PolicyV1beta1Api* | [**delete_collection_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#delete_collection_namespaced_pod_disruption_budget) | **DELETE** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets | +*PolicyV1beta1Api* | [**delete_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#delete_namespaced_pod_disruption_budget) | **DELETE** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name} | +*PolicyV1beta1Api* | [**get_api_resources**](docs/PolicyV1beta1Api.md#get_api_resources) | **GET** /apis/policy/v1beta1/ | +*PolicyV1beta1Api* | [**list_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#list_namespaced_pod_disruption_budget) | **GET** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets | +*PolicyV1beta1Api* | [**list_pod_disruption_budget_for_all_namespaces**](docs/PolicyV1beta1Api.md#list_pod_disruption_budget_for_all_namespaces) | **GET** /apis/policy/v1beta1/poddisruptionbudgets | +*PolicyV1beta1Api* | [**patch_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#patch_namespaced_pod_disruption_budget) | **PATCH** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name} | +*PolicyV1beta1Api* | [**patch_namespaced_pod_disruption_budget_status**](docs/PolicyV1beta1Api.md#patch_namespaced_pod_disruption_budget_status) | **PATCH** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status | +*PolicyV1beta1Api* | [**read_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#read_namespaced_pod_disruption_budget) | **GET** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name} | +*PolicyV1beta1Api* | [**read_namespaced_pod_disruption_budget_status**](docs/PolicyV1beta1Api.md#read_namespaced_pod_disruption_budget_status) | **GET** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status | +*PolicyV1beta1Api* | [**replace_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#replace_namespaced_pod_disruption_budget) | **PUT** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name} | +*PolicyV1beta1Api* | [**replace_namespaced_pod_disruption_budget_status**](docs/PolicyV1beta1Api.md#replace_namespaced_pod_disruption_budget_status) | **PUT** /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status | +*PolicyV1beta1Api* | [**watch_namespaced_pod_disruption_budget**](docs/PolicyV1beta1Api.md#watch_namespaced_pod_disruption_budget) | **GET** /apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets/{name} | +*PolicyV1beta1Api* | [**watch_namespaced_pod_disruption_budget_list**](docs/PolicyV1beta1Api.md#watch_namespaced_pod_disruption_budget_list) | **GET** /apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets | +*PolicyV1beta1Api* | [**watch_pod_disruption_budget_list_for_all_namespaces**](docs/PolicyV1beta1Api.md#watch_pod_disruption_budget_list_for_all_namespaces) | **GET** /apis/policy/v1beta1/watch/poddisruptionbudgets | +*RbacAuthorizationApi* | [**get_api_group**](docs/RbacAuthorizationApi.md#get_api_group) | **GET** /apis/rbac.authorization.k8s.io/ | +*RbacAuthorizationV1alpha1Api* | [**create_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#create_cluster_role) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles | +*RbacAuthorizationV1alpha1Api* | [**create_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#create_cluster_role_binding) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings | +*RbacAuthorizationV1alpha1Api* | [**create_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#create_namespaced_role) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles | +*RbacAuthorizationV1alpha1Api* | [**create_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#create_namespaced_role_binding) | **POST** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings | +*RbacAuthorizationV1alpha1Api* | [**delete_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_cluster_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | +*RbacAuthorizationV1alpha1Api* | [**delete_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_cluster_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**delete_collection_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_collection_cluster_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles | +*RbacAuthorizationV1alpha1Api* | [**delete_collection_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_collection_cluster_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings | +*RbacAuthorizationV1alpha1Api* | [**delete_collection_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_collection_namespaced_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles | +*RbacAuthorizationV1alpha1Api* | [**delete_collection_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_collection_namespaced_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings | +*RbacAuthorizationV1alpha1Api* | [**delete_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#delete_namespaced_role) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | +*RbacAuthorizationV1alpha1Api* | [**delete_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#delete_namespaced_role_binding) | **DELETE** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**get_api_resources**](docs/RbacAuthorizationV1alpha1Api.md#get_api_resources) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/ | +*RbacAuthorizationV1alpha1Api* | [**list_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#list_cluster_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles | +*RbacAuthorizationV1alpha1Api* | [**list_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#list_cluster_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings | +*RbacAuthorizationV1alpha1Api* | [**list_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#list_namespaced_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles | +*RbacAuthorizationV1alpha1Api* | [**list_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#list_namespaced_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings | +*RbacAuthorizationV1alpha1Api* | [**list_role_binding_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#list_role_binding_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/rolebindings | +*RbacAuthorizationV1alpha1Api* | [**list_role_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#list_role_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/roles | +*RbacAuthorizationV1alpha1Api* | [**patch_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#patch_cluster_role) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | +*RbacAuthorizationV1alpha1Api* | [**patch_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#patch_cluster_role_binding) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**patch_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#patch_namespaced_role) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | +*RbacAuthorizationV1alpha1Api* | [**patch_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#patch_namespaced_role_binding) | **PATCH** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**read_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#read_cluster_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | +*RbacAuthorizationV1alpha1Api* | [**read_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#read_cluster_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**read_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#read_namespaced_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | +*RbacAuthorizationV1alpha1Api* | [**read_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#read_namespaced_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**replace_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#replace_cluster_role) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name} | +*RbacAuthorizationV1alpha1Api* | [**replace_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#replace_cluster_role_binding) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**replace_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#replace_namespaced_role) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name} | +*RbacAuthorizationV1alpha1Api* | [**replace_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#replace_namespaced_role_binding) | **PUT** /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**watch_cluster_role**](docs/RbacAuthorizationV1alpha1Api.md#watch_cluster_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name} | +*RbacAuthorizationV1alpha1Api* | [**watch_cluster_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#watch_cluster_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**watch_cluster_role_binding_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_cluster_role_binding_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings | +*RbacAuthorizationV1alpha1Api* | [**watch_cluster_role_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_cluster_role_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles | +*RbacAuthorizationV1alpha1Api* | [**watch_namespaced_role**](docs/RbacAuthorizationV1alpha1Api.md#watch_namespaced_role) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name} | +*RbacAuthorizationV1alpha1Api* | [**watch_namespaced_role_binding**](docs/RbacAuthorizationV1alpha1Api.md#watch_namespaced_role_binding) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name} | +*RbacAuthorizationV1alpha1Api* | [**watch_namespaced_role_binding_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_namespaced_role_binding_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings | +*RbacAuthorizationV1alpha1Api* | [**watch_namespaced_role_list**](docs/RbacAuthorizationV1alpha1Api.md#watch_namespaced_role_list) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles | +*RbacAuthorizationV1alpha1Api* | [**watch_role_binding_list_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#watch_role_binding_list_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings | +*RbacAuthorizationV1alpha1Api* | [**watch_role_list_for_all_namespaces**](docs/RbacAuthorizationV1alpha1Api.md#watch_role_list_for_all_namespaces) | **GET** /apis/rbac.authorization.k8s.io/v1alpha1/watch/roles | +*StorageApi* | [**get_api_group**](docs/StorageApi.md#get_api_group) | **GET** /apis/storage.k8s.io/ | +*StorageV1beta1Api* | [**create_storage_class**](docs/StorageV1beta1Api.md#create_storage_class) | **POST** /apis/storage.k8s.io/v1beta1/storageclasses | +*StorageV1beta1Api* | [**delete_collection_storage_class**](docs/StorageV1beta1Api.md#delete_collection_storage_class) | **DELETE** /apis/storage.k8s.io/v1beta1/storageclasses | +*StorageV1beta1Api* | [**delete_storage_class**](docs/StorageV1beta1Api.md#delete_storage_class) | **DELETE** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | +*StorageV1beta1Api* | [**get_api_resources**](docs/StorageV1beta1Api.md#get_api_resources) | **GET** /apis/storage.k8s.io/v1beta1/ | +*StorageV1beta1Api* | [**list_storage_class**](docs/StorageV1beta1Api.md#list_storage_class) | **GET** /apis/storage.k8s.io/v1beta1/storageclasses | +*StorageV1beta1Api* | [**patch_storage_class**](docs/StorageV1beta1Api.md#patch_storage_class) | **PATCH** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | +*StorageV1beta1Api* | [**read_storage_class**](docs/StorageV1beta1Api.md#read_storage_class) | **GET** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | +*StorageV1beta1Api* | [**replace_storage_class**](docs/StorageV1beta1Api.md#replace_storage_class) | **PUT** /apis/storage.k8s.io/v1beta1/storageclasses/{name} | +*StorageV1beta1Api* | [**watch_storage_class**](docs/StorageV1beta1Api.md#watch_storage_class) | **GET** /apis/storage.k8s.io/v1beta1/watch/storageclasses/{name} | +*StorageV1beta1Api* | [**watch_storage_class_list**](docs/StorageV1beta1Api.md#watch_storage_class_list) | **GET** /apis/storage.k8s.io/v1beta1/watch/storageclasses | +*VersionApi* | [**get_code**](docs/VersionApi.md#get_code) | **GET** /version/ | + + +## Documentation For Models + + - [IntstrIntOrString](docs/IntstrIntOrString.md) + - [ResourceQuantity](docs/ResourceQuantity.md) + - [RuntimeRawExtension](docs/RuntimeRawExtension.md) + - [UnversionedAPIGroup](docs/UnversionedAPIGroup.md) + - [UnversionedAPIGroupList](docs/UnversionedAPIGroupList.md) + - [UnversionedAPIResource](docs/UnversionedAPIResource.md) + - [UnversionedAPIResourceList](docs/UnversionedAPIResourceList.md) + - [UnversionedAPIVersions](docs/UnversionedAPIVersions.md) + - [UnversionedGroupVersionForDiscovery](docs/UnversionedGroupVersionForDiscovery.md) + - [UnversionedLabelSelector](docs/UnversionedLabelSelector.md) + - [UnversionedLabelSelectorRequirement](docs/UnversionedLabelSelectorRequirement.md) + - [UnversionedListMeta](docs/UnversionedListMeta.md) + - [UnversionedServerAddressByClientCIDR](docs/UnversionedServerAddressByClientCIDR.md) + - [UnversionedStatus](docs/UnversionedStatus.md) + - [UnversionedStatusCause](docs/UnversionedStatusCause.md) + - [UnversionedStatusDetails](docs/UnversionedStatusDetails.md) + - [UnversionedTime](docs/UnversionedTime.md) + - [V1AttachedVolume](docs/V1AttachedVolume.md) + - [V1Binding](docs/V1Binding.md) + - [V1Capabilities](docs/V1Capabilities.md) + - [V1ComponentCondition](docs/V1ComponentCondition.md) + - [V1ComponentStatus](docs/V1ComponentStatus.md) + - [V1ComponentStatusList](docs/V1ComponentStatusList.md) + - [V1ConfigMap](docs/V1ConfigMap.md) + - [V1ConfigMapKeySelector](docs/V1ConfigMapKeySelector.md) + - [V1ConfigMapList](docs/V1ConfigMapList.md) + - [V1Container](docs/V1Container.md) + - [V1ContainerImage](docs/V1ContainerImage.md) + - [V1ContainerPort](docs/V1ContainerPort.md) + - [V1ContainerState](docs/V1ContainerState.md) + - [V1ContainerStateRunning](docs/V1ContainerStateRunning.md) + - [V1ContainerStateTerminated](docs/V1ContainerStateTerminated.md) + - [V1ContainerStateWaiting](docs/V1ContainerStateWaiting.md) + - [V1ContainerStatus](docs/V1ContainerStatus.md) + - [V1CrossVersionObjectReference](docs/V1CrossVersionObjectReference.md) + - [V1DaemonEndpoint](docs/V1DaemonEndpoint.md) + - [V1DeleteOptions](docs/V1DeleteOptions.md) + - [V1EndpointAddress](docs/V1EndpointAddress.md) + - [V1EndpointPort](docs/V1EndpointPort.md) + - [V1EndpointSubset](docs/V1EndpointSubset.md) + - [V1Endpoints](docs/V1Endpoints.md) + - [V1EndpointsList](docs/V1EndpointsList.md) + - [V1EnvVar](docs/V1EnvVar.md) + - [V1EnvVarSource](docs/V1EnvVarSource.md) + - [V1Event](docs/V1Event.md) + - [V1EventList](docs/V1EventList.md) + - [V1EventSource](docs/V1EventSource.md) + - [V1ExecAction](docs/V1ExecAction.md) + - [V1HTTPGetAction](docs/V1HTTPGetAction.md) + - [V1HTTPHeader](docs/V1HTTPHeader.md) + - [V1Handler](docs/V1Handler.md) + - [V1HorizontalPodAutoscaler](docs/V1HorizontalPodAutoscaler.md) + - [V1HorizontalPodAutoscalerList](docs/V1HorizontalPodAutoscalerList.md) + - [V1HorizontalPodAutoscalerSpec](docs/V1HorizontalPodAutoscalerSpec.md) + - [V1HorizontalPodAutoscalerStatus](docs/V1HorizontalPodAutoscalerStatus.md) + - [V1Job](docs/V1Job.md) + - [V1JobCondition](docs/V1JobCondition.md) + - [V1JobList](docs/V1JobList.md) + - [V1JobSpec](docs/V1JobSpec.md) + - [V1JobStatus](docs/V1JobStatus.md) + - [V1Lifecycle](docs/V1Lifecycle.md) + - [V1LimitRange](docs/V1LimitRange.md) + - [V1LimitRangeItem](docs/V1LimitRangeItem.md) + - [V1LimitRangeList](docs/V1LimitRangeList.md) + - [V1LimitRangeSpec](docs/V1LimitRangeSpec.md) + - [V1LoadBalancerIngress](docs/V1LoadBalancerIngress.md) + - [V1LoadBalancerStatus](docs/V1LoadBalancerStatus.md) + - [V1LocalObjectReference](docs/V1LocalObjectReference.md) + - [V1Namespace](docs/V1Namespace.md) + - [V1NamespaceList](docs/V1NamespaceList.md) + - [V1NamespaceSpec](docs/V1NamespaceSpec.md) + - [V1NamespaceStatus](docs/V1NamespaceStatus.md) + - [V1Node](docs/V1Node.md) + - [V1NodeAddress](docs/V1NodeAddress.md) + - [V1NodeCondition](docs/V1NodeCondition.md) + - [V1NodeDaemonEndpoints](docs/V1NodeDaemonEndpoints.md) + - [V1NodeList](docs/V1NodeList.md) + - [V1NodeSpec](docs/V1NodeSpec.md) + - [V1NodeStatus](docs/V1NodeStatus.md) + - [V1NodeSystemInfo](docs/V1NodeSystemInfo.md) + - [V1ObjectFieldSelector](docs/V1ObjectFieldSelector.md) + - [V1ObjectMeta](docs/V1ObjectMeta.md) + - [V1ObjectReference](docs/V1ObjectReference.md) + - [V1OwnerReference](docs/V1OwnerReference.md) + - [V1PersistentVolume](docs/V1PersistentVolume.md) + - [V1PersistentVolumeClaim](docs/V1PersistentVolumeClaim.md) + - [V1PersistentVolumeClaimList](docs/V1PersistentVolumeClaimList.md) + - [V1PersistentVolumeClaimSpec](docs/V1PersistentVolumeClaimSpec.md) + - [V1PersistentVolumeClaimStatus](docs/V1PersistentVolumeClaimStatus.md) + - [V1PersistentVolumeList](docs/V1PersistentVolumeList.md) + - [V1PersistentVolumeSpec](docs/V1PersistentVolumeSpec.md) + - [V1PersistentVolumeStatus](docs/V1PersistentVolumeStatus.md) + - [V1Pod](docs/V1Pod.md) + - [V1PodCondition](docs/V1PodCondition.md) + - [V1PodList](docs/V1PodList.md) + - [V1PodSecurityContext](docs/V1PodSecurityContext.md) + - [V1PodSpec](docs/V1PodSpec.md) + - [V1PodStatus](docs/V1PodStatus.md) + - [V1PodTemplate](docs/V1PodTemplate.md) + - [V1PodTemplateList](docs/V1PodTemplateList.md) + - [V1PodTemplateSpec](docs/V1PodTemplateSpec.md) + - [V1Preconditions](docs/V1Preconditions.md) + - [V1Probe](docs/V1Probe.md) + - [V1ReplicationController](docs/V1ReplicationController.md) + - [V1ReplicationControllerCondition](docs/V1ReplicationControllerCondition.md) + - [V1ReplicationControllerList](docs/V1ReplicationControllerList.md) + - [V1ReplicationControllerSpec](docs/V1ReplicationControllerSpec.md) + - [V1ReplicationControllerStatus](docs/V1ReplicationControllerStatus.md) + - [V1ResourceFieldSelector](docs/V1ResourceFieldSelector.md) + - [V1ResourceQuota](docs/V1ResourceQuota.md) + - [V1ResourceQuotaList](docs/V1ResourceQuotaList.md) + - [V1ResourceQuotaSpec](docs/V1ResourceQuotaSpec.md) + - [V1ResourceQuotaStatus](docs/V1ResourceQuotaStatus.md) + - [V1ResourceRequirements](docs/V1ResourceRequirements.md) + - [V1SELinuxOptions](docs/V1SELinuxOptions.md) + - [V1Scale](docs/V1Scale.md) + - [V1ScaleSpec](docs/V1ScaleSpec.md) + - [V1ScaleStatus](docs/V1ScaleStatus.md) + - [V1Secret](docs/V1Secret.md) + - [V1SecretKeySelector](docs/V1SecretKeySelector.md) + - [V1SecretList](docs/V1SecretList.md) + - [V1SecurityContext](docs/V1SecurityContext.md) + - [V1Service](docs/V1Service.md) + - [V1ServiceAccount](docs/V1ServiceAccount.md) + - [V1ServiceAccountList](docs/V1ServiceAccountList.md) + - [V1ServiceList](docs/V1ServiceList.md) + - [V1ServicePort](docs/V1ServicePort.md) + - [V1ServiceSpec](docs/V1ServiceSpec.md) + - [V1ServiceStatus](docs/V1ServiceStatus.md) + - [V1TCPSocketAction](docs/V1TCPSocketAction.md) + - [V1Volume](docs/V1Volume.md) + - [V1VolumeMount](docs/V1VolumeMount.md) + - [V1alpha1CertificateSigningRequest](docs/V1alpha1CertificateSigningRequest.md) + - [V1alpha1CertificateSigningRequestCondition](docs/V1alpha1CertificateSigningRequestCondition.md) + - [V1alpha1CertificateSigningRequestList](docs/V1alpha1CertificateSigningRequestList.md) + - [V1alpha1CertificateSigningRequestSpec](docs/V1alpha1CertificateSigningRequestSpec.md) + - [V1alpha1CertificateSigningRequestStatus](docs/V1alpha1CertificateSigningRequestStatus.md) + - [V1alpha1ClusterRole](docs/V1alpha1ClusterRole.md) + - [V1alpha1ClusterRoleBinding](docs/V1alpha1ClusterRoleBinding.md) + - [V1alpha1ClusterRoleBindingList](docs/V1alpha1ClusterRoleBindingList.md) + - [V1alpha1ClusterRoleList](docs/V1alpha1ClusterRoleList.md) + - [V1alpha1PolicyRule](docs/V1alpha1PolicyRule.md) + - [V1alpha1Role](docs/V1alpha1Role.md) + - [V1alpha1RoleBinding](docs/V1alpha1RoleBinding.md) + - [V1alpha1RoleBindingList](docs/V1alpha1RoleBindingList.md) + - [V1alpha1RoleList](docs/V1alpha1RoleList.md) + - [V1alpha1RoleRef](docs/V1alpha1RoleRef.md) + - [V1alpha1Subject](docs/V1alpha1Subject.md) + - [V1beta1APIVersion](docs/V1beta1APIVersion.md) + - [V1beta1CPUTargetUtilization](docs/V1beta1CPUTargetUtilization.md) + - [V1beta1DaemonSet](docs/V1beta1DaemonSet.md) + - [V1beta1DaemonSetList](docs/V1beta1DaemonSetList.md) + - [V1beta1DaemonSetSpec](docs/V1beta1DaemonSetSpec.md) + - [V1beta1DaemonSetStatus](docs/V1beta1DaemonSetStatus.md) + - [V1beta1Deployment](docs/V1beta1Deployment.md) + - [V1beta1DeploymentCondition](docs/V1beta1DeploymentCondition.md) + - [V1beta1DeploymentList](docs/V1beta1DeploymentList.md) + - [V1beta1DeploymentRollback](docs/V1beta1DeploymentRollback.md) + - [V1beta1DeploymentSpec](docs/V1beta1DeploymentSpec.md) + - [V1beta1DeploymentStatus](docs/V1beta1DeploymentStatus.md) + - [V1beta1DeploymentStrategy](docs/V1beta1DeploymentStrategy.md) + - [V1beta1Eviction](docs/V1beta1Eviction.md) + - [V1beta1HorizontalPodAutoscaler](docs/V1beta1HorizontalPodAutoscaler.md) + - [V1beta1HorizontalPodAutoscalerList](docs/V1beta1HorizontalPodAutoscalerList.md) + - [V1beta1HorizontalPodAutoscalerSpec](docs/V1beta1HorizontalPodAutoscalerSpec.md) + - [V1beta1HorizontalPodAutoscalerStatus](docs/V1beta1HorizontalPodAutoscalerStatus.md) + - [V1beta1Ingress](docs/V1beta1Ingress.md) + - [V1beta1IngressBackend](docs/V1beta1IngressBackend.md) + - [V1beta1IngressList](docs/V1beta1IngressList.md) + - [V1beta1IngressRule](docs/V1beta1IngressRule.md) + - [V1beta1IngressSpec](docs/V1beta1IngressSpec.md) + - [V1beta1IngressStatus](docs/V1beta1IngressStatus.md) + - [V1beta1IngressTLS](docs/V1beta1IngressTLS.md) + - [V1beta1Job](docs/V1beta1Job.md) + - [V1beta1JobCondition](docs/V1beta1JobCondition.md) + - [V1beta1JobList](docs/V1beta1JobList.md) + - [V1beta1JobSpec](docs/V1beta1JobSpec.md) + - [V1beta1JobStatus](docs/V1beta1JobStatus.md) + - [V1beta1LocalSubjectAccessReview](docs/V1beta1LocalSubjectAccessReview.md) + - [V1beta1NetworkPolicy](docs/V1beta1NetworkPolicy.md) + - [V1beta1NetworkPolicyIngressRule](docs/V1beta1NetworkPolicyIngressRule.md) + - [V1beta1NetworkPolicyList](docs/V1beta1NetworkPolicyList.md) + - [V1beta1NetworkPolicyPeer](docs/V1beta1NetworkPolicyPeer.md) + - [V1beta1NetworkPolicyPort](docs/V1beta1NetworkPolicyPort.md) + - [V1beta1NetworkPolicySpec](docs/V1beta1NetworkPolicySpec.md) + - [V1beta1NonResourceAttributes](docs/V1beta1NonResourceAttributes.md) + - [V1beta1PodDisruptionBudget](docs/V1beta1PodDisruptionBudget.md) + - [V1beta1PodDisruptionBudgetList](docs/V1beta1PodDisruptionBudgetList.md) + - [V1beta1PodDisruptionBudgetSpec](docs/V1beta1PodDisruptionBudgetSpec.md) + - [V1beta1PodDisruptionBudgetStatus](docs/V1beta1PodDisruptionBudgetStatus.md) + - [V1beta1ReplicaSet](docs/V1beta1ReplicaSet.md) + - [V1beta1ReplicaSetCondition](docs/V1beta1ReplicaSetCondition.md) + - [V1beta1ReplicaSetList](docs/V1beta1ReplicaSetList.md) + - [V1beta1ReplicaSetSpec](docs/V1beta1ReplicaSetSpec.md) + - [V1beta1ReplicaSetStatus](docs/V1beta1ReplicaSetStatus.md) + - [V1beta1ResourceAttributes](docs/V1beta1ResourceAttributes.md) + - [V1beta1RollbackConfig](docs/V1beta1RollbackConfig.md) + - [V1beta1RollingUpdateDeployment](docs/V1beta1RollingUpdateDeployment.md) + - [V1beta1Scale](docs/V1beta1Scale.md) + - [V1beta1ScaleSpec](docs/V1beta1ScaleSpec.md) + - [V1beta1ScaleStatus](docs/V1beta1ScaleStatus.md) + - [V1beta1SelfSubjectAccessReview](docs/V1beta1SelfSubjectAccessReview.md) + - [V1beta1SelfSubjectAccessReviewSpec](docs/V1beta1SelfSubjectAccessReviewSpec.md) + - [V1beta1StatefulSet](docs/V1beta1StatefulSet.md) + - [V1beta1StatefulSetList](docs/V1beta1StatefulSetList.md) + - [V1beta1StatefulSetSpec](docs/V1beta1StatefulSetSpec.md) + - [V1beta1StatefulSetStatus](docs/V1beta1StatefulSetStatus.md) + - [V1beta1StorageClass](docs/V1beta1StorageClass.md) + - [V1beta1StorageClassList](docs/V1beta1StorageClassList.md) + - [V1beta1SubjectAccessReview](docs/V1beta1SubjectAccessReview.md) + - [V1beta1SubjectAccessReviewSpec](docs/V1beta1SubjectAccessReviewSpec.md) + - [V1beta1SubjectAccessReviewStatus](docs/V1beta1SubjectAccessReviewStatus.md) + - [V1beta1SubresourceReference](docs/V1beta1SubresourceReference.md) + - [V1beta1ThirdPartyResource](docs/V1beta1ThirdPartyResource.md) + - [V1beta1ThirdPartyResourceList](docs/V1beta1ThirdPartyResourceList.md) + - [V1beta1TokenReview](docs/V1beta1TokenReview.md) + - [V1beta1TokenReviewSpec](docs/V1beta1TokenReviewSpec.md) + - [V1beta1TokenReviewStatus](docs/V1beta1TokenReviewStatus.md) + - [V1beta1UserInfo](docs/V1beta1UserInfo.md) + - [VersionInfo](docs/VersionInfo.md) + - [VersionedEvent](docs/VersionedEvent.md) + + +## Documentation For Authorization + + +## BearerToken + +- **Type**: API key +- **API key parameter name**: authorization +- **Location**: HTTP header + + +## Author + + diff --git a/README.prefix b/README.prefix new file mode 100644 index 000000000..bf306c8f9 --- /dev/null +++ b/README.prefix @@ -0,0 +1,38 @@ +# Kubernetes Python Client + +Python clients for talking to a [kubernetes](http://kubernetes.io/) cluster. + +## Example + +```python +from __future__ import absolute_import + +import k8sutil +import k8sclient +import os + +# Configs can be set in Configuration class directly or using helper utility +k8sutil.load_kube_config(os.environ["HOME"] + '/.kube/config') + +# Prior to python 3.4 hosts with ip-addresses cannot be verified for SSL. this +# utility function fixes that. +k8sutil.fix_ssl_hosts_with_ipaddress() + +v1=k8sclient.CoreV1Api() +print "Listing pods with their IPs:" +ret = v1.list_pod_for_all_namespaces() +for i in ret.items: + print "%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name) +``` + +More examples can be found in [examples](examples/) folder. To run examples, run this command: + +```shell +python -m examples.example1 +``` + +(replace example1 with the example base filename) + +# Generated client README + + diff --git a/scripts/ROOT_README.md b/scripts/ROOT_README.md deleted file mode 100644 index 480992027..000000000 --- a/scripts/ROOT_README.md +++ /dev/null @@ -1,23 +0,0 @@ -# Kubernetes Python Client - -Python clients for talking to a [kubernetes](http://kubernetes.io/) cluster. - -## Example - -```python -from __future__ import absolute_import - -import k8sclient -import os - -v1=k8sclient.CoreV1Api() -print "Listing pods with their IPs:" -ret = v1.list_pod_for_all_namespaces(watch=False) -for i in ret.items: - print "%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name) -``` - -# Generated client README - -for generated client documentation, refer to [generated README](GEN_README.md). - diff --git a/scripts/generate.sh b/scripts/generate.sh index 23cab0dd9..0e96f68d0 100755 --- a/scripts/generate.sh +++ b/scripts/generate.sh @@ -47,17 +47,22 @@ if [[ ! -n ${SWAGGER_FILE-} ]]; then SWAGGER_FILE="${KUBE_ROOT}/api/openapi-spec/swagger.json" fi +echo "--- Preprocessing OpenAPI spec to script directory" +python "${SCRIPT_ROOT}/preprocess_spec.py" "$SWAGGER_FILE" "${SCRIPT_ROOT}/swagger.json" + echo "--- Cleaning up previously generated folders" rm -rf "${CLIENT_ROOT}/${PACKAGE_NAME}" rm -rf "${CLIENT_ROOT}/docs" rm -rf "${CLIENT_ROOT}/test" echo "--- Generating client ..." -mvn -f "${SCRIPT_ROOT}/pom.xml" clean generate-sources -Dgenerator.spec.path="${SWAGGER_FILE}" -Dgenerator.output.path="${CLIENT_ROOT}" -Dgenerator.package.name=${PACKAGE_NAME} +mvn -f "${SCRIPT_ROOT}/pom.xml" clean generate-sources -Dgenerator.spec.path="${SCRIPT_ROOT}/swagger.json" -Dgenerator.output.path="${CLIENT_ROOT}" -Dgenerator.package.name=${PACKAGE_NAME} echo "--- Patching generated code..." -cp "${CLIENT_ROOT}/README.md" "${CLIENT_ROOT}/GEN_README.md" -cp "${SCRIPT_ROOT}/ROOT_README.md" "${CLIENT_ROOT}/README.md" +cat "${CLIENT_ROOT}/README.prefix" "${CLIENT_ROOT}/README.md" > "${CLIENT_ROOT}/README.new" +rm "${CLIENT_ROOT}/README.md" +mv "${CLIENT_ROOT}/README.new" "${CLIENT_ROOT}/README.md" cp "${SCRIPT_ROOT}/LICENSE" "${CLIENT_ROOT}" rm -rf "${CLIENT_ROOT}/test" + echo "---Done." diff --git a/scripts/preprocess_spec.py b/scripts/preprocess_spec.py new file mode 100644 index 000000000..b19d77ac0 --- /dev/null +++ b/scripts/preprocess_spec.py @@ -0,0 +1,51 @@ +import json +import os.path +import sys +from collections import OrderedDict + +_ops = ['get', 'put', 'post', 'delete', 'options', 'head', 'patch'] + + +def _title(s): + if len(s) == 0: + return s + return s[0].upper() + s[1:] + + +def _to_camel_case(s): + return ''.join(_title(y) for y in s.split("_")) + + +def iterate_through_operations(spec, func): + for k, v in spec['paths'].iteritems(): + for op in _ops: + if op in v: + func(v[op]) + + +def process_swagger(infile, outfile): + with open(infile, 'r') as f: + spec = json.load(f, object_pairs_hook=OrderedDict) + + def strip_tags_from_operation_id(operation): + operation_id = operation['operationId'] + for t in operation['tags']: + operation_id = operation_id.replace(_to_camel_case(t), '') + operation['operationId'] = operation_id + + iterate_through_operations(spec, strip_tags_from_operation_id) + + with open(outfile, 'w') as out: + json.dump(spec, out, sort_keys=False, indent=2, + separators=(',', ': '), ensure_ascii=True) + + +def main(): + if len(sys.argv) < 3: + print "Usage:\n\tpython %s infile outfile.\n" % sys.argv[0] + sys.exit(0) + if not os.path.isfile(sys.argv[1]): + print "Input file %s does not exist." % sys.argv[1] + process_swagger(sys.argv[1], sys.argv[2]) + +main()