Skip to content

Latest commit

 

History

History
957 lines (923 loc) · 114 KB

README.md

File metadata and controls

957 lines (923 loc) · 114 KB

kubernetes.client

No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)

This Python package is automatically generated by the Swagger Codegen project:

  • API version: v1.6.1
  • Package version: 2.0.0-snapshot
  • Build package: 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

pip install git+https://github.com/kubernetes-incubator/client-python.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/kubernetes-incubator/client-python.git)

Then import the package:

import kubernetes.client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import kubernetes.client

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import kubernetes.client
from kubernetes.client.rest import ApiException
from pprint import pprint

# Configure API key authorization: BearerToken
kubernetes.client.configuration.api_key['authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# kubernetes.client.configuration.api_key_prefix['authorization'] = 'Bearer'
# create an instance of the API class
api_instance = kubernetes.client.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 GET /apis/
AppsApi get_api_group GET /apis/apps/
AppsV1beta1Api create_namespaced_deployment POST /apis/apps/v1beta1/namespaces/{namespace}/deployments
AppsV1beta1Api create_namespaced_deployment_rollback_rollback POST /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
AppsV1beta1Api create_namespaced_stateful_set POST /apis/apps/v1beta1/namespaces/{namespace}/statefulsets
AppsV1beta1Api delete_collection_namespaced_deployment DELETE /apis/apps/v1beta1/namespaces/{namespace}/deployments
AppsV1beta1Api delete_collection_namespaced_stateful_set DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets
AppsV1beta1Api delete_namespaced_deployment DELETE /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1Api delete_namespaced_stateful_set DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1Api get_api_resources GET /apis/apps/v1beta1/
AppsV1beta1Api list_deployment_for_all_namespaces GET /apis/apps/v1beta1/deployments
AppsV1beta1Api list_namespaced_deployment GET /apis/apps/v1beta1/namespaces/{namespace}/deployments
AppsV1beta1Api list_namespaced_stateful_set GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets
AppsV1beta1Api list_stateful_set_for_all_namespaces GET /apis/apps/v1beta1/statefulsets
AppsV1beta1Api patch_namespaced_deployment PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1Api patch_namespaced_deployment_status PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status
AppsV1beta1Api patch_namespaced_scale_scale PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta1Api patch_namespaced_stateful_set PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1Api patch_namespaced_stateful_set_status PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta1Api read_namespaced_deployment GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1Api read_namespaced_deployment_status GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status
AppsV1beta1Api read_namespaced_scale_scale GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta1Api read_namespaced_stateful_set GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1Api read_namespaced_stateful_set_status GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1beta1Api replace_namespaced_deployment PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}
AppsV1beta1Api replace_namespaced_deployment_status PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status
AppsV1beta1Api replace_namespaced_scale_scale PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale
AppsV1beta1Api replace_namespaced_stateful_set PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}
AppsV1beta1Api replace_namespaced_stateful_set_status PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status
AuthenticationApi get_api_group GET /apis/authentication.k8s.io/
AuthenticationV1Api create_token_review POST /apis/authentication.k8s.io/v1/tokenreviews
AuthenticationV1Api get_api_resources GET /apis/authentication.k8s.io/v1/
AuthenticationV1beta1Api create_token_review POST /apis/authentication.k8s.io/v1beta1/tokenreviews
AuthenticationV1beta1Api get_api_resources GET /apis/authentication.k8s.io/v1beta1/
AuthorizationApi get_api_group GET /apis/authorization.k8s.io/
AuthorizationV1Api create_namespaced_local_subject_access_review POST /apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews
AuthorizationV1Api create_self_subject_access_review POST /apis/authorization.k8s.io/v1/selfsubjectaccessreviews
AuthorizationV1Api create_subject_access_review POST /apis/authorization.k8s.io/v1/subjectaccessreviews
AuthorizationV1Api get_api_resources GET /apis/authorization.k8s.io/v1/
AuthorizationV1beta1Api create_namespaced_local_subject_access_review POST /apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews
AuthorizationV1beta1Api create_self_subject_access_review POST /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews
AuthorizationV1beta1Api create_subject_access_review POST /apis/authorization.k8s.io/v1beta1/subjectaccessreviews
AuthorizationV1beta1Api get_api_resources GET /apis/authorization.k8s.io/v1beta1/
AutoscalingApi get_api_group GET /apis/autoscaling/
AutoscalingV1Api create_namespaced_horizontal_pod_autoscaler POST /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV1Api delete_collection_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV1Api delete_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1Api get_api_resources GET /apis/autoscaling/v1/
AutoscalingV1Api list_horizontal_pod_autoscaler_for_all_namespaces GET /apis/autoscaling/v1/horizontalpodautoscalers
AutoscalingV1Api list_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV1Api patch_namespaced_horizontal_pod_autoscaler PATCH /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1Api patch_namespaced_horizontal_pod_autoscaler_status PATCH /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV1Api read_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1Api read_namespaced_horizontal_pod_autoscaler_status GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV1Api replace_namespaced_horizontal_pod_autoscaler PUT /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV1Api replace_namespaced_horizontal_pod_autoscaler_status PUT /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2alpha1Api create_namespaced_horizontal_pod_autoscaler POST /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2alpha1Api delete_collection_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2alpha1Api delete_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2alpha1Api get_api_resources GET /apis/autoscaling/v2alpha1/
AutoscalingV2alpha1Api list_horizontal_pod_autoscaler_for_all_namespaces GET /apis/autoscaling/v2alpha1/horizontalpodautoscalers
AutoscalingV2alpha1Api list_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2alpha1Api patch_namespaced_horizontal_pod_autoscaler PATCH /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2alpha1Api patch_namespaced_horizontal_pod_autoscaler_status PATCH /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2alpha1Api read_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2alpha1Api read_namespaced_horizontal_pod_autoscaler_status GET /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2alpha1Api replace_namespaced_horizontal_pod_autoscaler PUT /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2alpha1Api replace_namespaced_horizontal_pod_autoscaler_status PUT /apis/autoscaling/v2alpha1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
BatchApi get_api_group GET /apis/batch/
BatchV1Api create_namespaced_job POST /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1Api delete_collection_namespaced_job DELETE /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1Api delete_namespaced_job DELETE /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1Api get_api_resources GET /apis/batch/v1/
BatchV1Api list_job_for_all_namespaces GET /apis/batch/v1/jobs
BatchV1Api list_namespaced_job GET /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1Api patch_namespaced_job PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1Api patch_namespaced_job_status PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status
BatchV1Api read_namespaced_job GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1Api read_namespaced_job_status GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status
BatchV1Api replace_namespaced_job PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1Api replace_namespaced_job_status PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status
BatchV2alpha1Api create_namespaced_cron_job POST /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs
BatchV2alpha1Api create_namespaced_scheduled_job POST /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs
BatchV2alpha1Api delete_collection_namespaced_cron_job DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs
BatchV2alpha1Api delete_collection_namespaced_scheduled_job DELETE /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs
BatchV2alpha1Api delete_namespaced_cron_job DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1Api delete_namespaced_scheduled_job DELETE /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}
BatchV2alpha1Api get_api_resources GET /apis/batch/v2alpha1/
BatchV2alpha1Api list_cron_job_for_all_namespaces GET /apis/batch/v2alpha1/cronjobs
BatchV2alpha1Api list_namespaced_cron_job GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs
BatchV2alpha1Api list_namespaced_scheduled_job GET /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs
BatchV2alpha1Api list_scheduled_job_for_all_namespaces GET /apis/batch/v2alpha1/scheduledjobs
BatchV2alpha1Api patch_namespaced_cron_job PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1Api patch_namespaced_cron_job_status PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status
BatchV2alpha1Api patch_namespaced_scheduled_job PATCH /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}
BatchV2alpha1Api patch_namespaced_scheduled_job_status PATCH /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}/status
BatchV2alpha1Api read_namespaced_cron_job GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1Api read_namespaced_cron_job_status GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status
BatchV2alpha1Api read_namespaced_scheduled_job GET /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}
BatchV2alpha1Api read_namespaced_scheduled_job_status GET /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}/status
BatchV2alpha1Api replace_namespaced_cron_job PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}
BatchV2alpha1Api replace_namespaced_cron_job_status PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status
BatchV2alpha1Api replace_namespaced_scheduled_job PUT /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}
BatchV2alpha1Api replace_namespaced_scheduled_job_status PUT /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}/status
CertificatesApi get_api_group GET /apis/certificates.k8s.io/
CertificatesV1beta1Api create_certificate_signing_request POST /apis/certificates.k8s.io/v1beta1/certificatesigningrequests
CertificatesV1beta1Api delete_certificate_signing_request DELETE /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1Api delete_collection_certificate_signing_request DELETE /apis/certificates.k8s.io/v1beta1/certificatesigningrequests
CertificatesV1beta1Api get_api_resources GET /apis/certificates.k8s.io/v1beta1/
CertificatesV1beta1Api list_certificate_signing_request GET /apis/certificates.k8s.io/v1beta1/certificatesigningrequests
CertificatesV1beta1Api patch_certificate_signing_request PATCH /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1Api read_certificate_signing_request GET /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1Api replace_certificate_signing_request PUT /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}
CertificatesV1beta1Api replace_certificate_signing_request_approval PUT /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval
CertificatesV1beta1Api replace_certificate_signing_request_status PUT /apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status
CoreApi get_api_versions GET /api/
CoreV1Api connect_delete_namespaced_pod_proxy DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1Api connect_delete_namespaced_pod_proxy_with_path DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1Api connect_delete_namespaced_service_proxy DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1Api connect_delete_namespaced_service_proxy_with_path DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1Api connect_delete_node_proxy DELETE /api/v1/nodes/{name}/proxy
CoreV1Api connect_delete_node_proxy_with_path DELETE /api/v1/nodes/{name}/proxy/{path}
CoreV1Api connect_get_namespaced_pod_attach GET /api/v1/namespaces/{namespace}/pods/{name}/attach
CoreV1Api connect_get_namespaced_pod_exec GET /api/v1/namespaces/{namespace}/pods/{name}/exec
CoreV1Api connect_get_namespaced_pod_portforward GET /api/v1/namespaces/{namespace}/pods/{name}/portforward
CoreV1Api connect_get_namespaced_pod_proxy GET /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1Api connect_get_namespaced_pod_proxy_with_path GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1Api connect_get_namespaced_service_proxy GET /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1Api connect_get_namespaced_service_proxy_with_path GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1Api connect_get_node_proxy GET /api/v1/nodes/{name}/proxy
CoreV1Api connect_get_node_proxy_with_path GET /api/v1/nodes/{name}/proxy/{path}
CoreV1Api connect_head_namespaced_pod_proxy HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1Api connect_head_namespaced_pod_proxy_with_path HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1Api connect_head_namespaced_service_proxy HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1Api connect_head_namespaced_service_proxy_with_path HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1Api connect_head_node_proxy HEAD /api/v1/nodes/{name}/proxy
CoreV1Api connect_head_node_proxy_with_path HEAD /api/v1/nodes/{name}/proxy/{path}
CoreV1Api connect_options_namespaced_pod_proxy OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1Api connect_options_namespaced_pod_proxy_with_path OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1Api connect_options_namespaced_service_proxy OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1Api connect_options_namespaced_service_proxy_with_path OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1Api connect_options_node_proxy OPTIONS /api/v1/nodes/{name}/proxy
CoreV1Api connect_options_node_proxy_with_path OPTIONS /api/v1/nodes/{name}/proxy/{path}
CoreV1Api connect_post_namespaced_pod_attach POST /api/v1/namespaces/{namespace}/pods/{name}/attach
CoreV1Api connect_post_namespaced_pod_exec POST /api/v1/namespaces/{namespace}/pods/{name}/exec
CoreV1Api connect_post_namespaced_pod_portforward POST /api/v1/namespaces/{namespace}/pods/{name}/portforward
CoreV1Api connect_post_namespaced_pod_proxy POST /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1Api connect_post_namespaced_pod_proxy_with_path POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1Api connect_post_namespaced_service_proxy POST /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1Api connect_post_namespaced_service_proxy_with_path POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1Api connect_post_node_proxy POST /api/v1/nodes/{name}/proxy
CoreV1Api connect_post_node_proxy_with_path POST /api/v1/nodes/{name}/proxy/{path}
CoreV1Api connect_put_namespaced_pod_proxy PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1Api connect_put_namespaced_pod_proxy_with_path PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1Api connect_put_namespaced_service_proxy PUT /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1Api connect_put_namespaced_service_proxy_with_path PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1Api connect_put_node_proxy PUT /api/v1/nodes/{name}/proxy
CoreV1Api connect_put_node_proxy_with_path PUT /api/v1/nodes/{name}/proxy/{path}
CoreV1Api create_namespace POST /api/v1/namespaces
CoreV1Api create_namespaced_binding POST /api/v1/namespaces/{namespace}/bindings
CoreV1Api create_namespaced_binding_binding POST /api/v1/namespaces/{namespace}/pods/{name}/binding
CoreV1Api create_namespaced_config_map POST /api/v1/namespaces/{namespace}/configmaps
CoreV1Api create_namespaced_endpoints POST /api/v1/namespaces/{namespace}/endpoints
CoreV1Api create_namespaced_event POST /api/v1/namespaces/{namespace}/events
CoreV1Api create_namespaced_eviction_eviction POST /api/v1/namespaces/{namespace}/pods/{name}/eviction
CoreV1Api create_namespaced_limit_range POST /api/v1/namespaces/{namespace}/limitranges
CoreV1Api create_namespaced_persistent_volume_claim POST /api/v1/namespaces/{namespace}/persistentvolumeclaims
CoreV1Api create_namespaced_pod POST /api/v1/namespaces/{namespace}/pods
CoreV1Api create_namespaced_pod_template POST /api/v1/namespaces/{namespace}/podtemplates
CoreV1Api create_namespaced_replication_controller POST /api/v1/namespaces/{namespace}/replicationcontrollers
CoreV1Api create_namespaced_resource_quota POST /api/v1/namespaces/{namespace}/resourcequotas
CoreV1Api create_namespaced_secret POST /api/v1/namespaces/{namespace}/secrets
CoreV1Api create_namespaced_service POST /api/v1/namespaces/{namespace}/services
CoreV1Api create_namespaced_service_account POST /api/v1/namespaces/{namespace}/serviceaccounts
CoreV1Api create_node POST /api/v1/nodes
CoreV1Api create_persistent_volume POST /api/v1/persistentvolumes
CoreV1Api delete_collection_namespace DELETE /api/v1/namespaces
CoreV1Api delete_collection_namespaced_config_map DELETE /api/v1/namespaces/{namespace}/configmaps
CoreV1Api delete_collection_namespaced_endpoints DELETE /api/v1/namespaces/{namespace}/endpoints
CoreV1Api delete_collection_namespaced_event DELETE /api/v1/namespaces/{namespace}/events
CoreV1Api delete_collection_namespaced_limit_range DELETE /api/v1/namespaces/{namespace}/limitranges
CoreV1Api delete_collection_namespaced_persistent_volume_claim DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims
CoreV1Api delete_collection_namespaced_pod DELETE /api/v1/namespaces/{namespace}/pods
CoreV1Api delete_collection_namespaced_pod_template DELETE /api/v1/namespaces/{namespace}/podtemplates
CoreV1Api delete_collection_namespaced_replication_controller DELETE /api/v1/namespaces/{namespace}/replicationcontrollers
CoreV1Api delete_collection_namespaced_resource_quota DELETE /api/v1/namespaces/{namespace}/resourcequotas
CoreV1Api delete_collection_namespaced_secret DELETE /api/v1/namespaces/{namespace}/secrets
CoreV1Api delete_collection_namespaced_service_account DELETE /api/v1/namespaces/{namespace}/serviceaccounts
CoreV1Api delete_collection_node DELETE /api/v1/nodes
CoreV1Api delete_collection_persistent_volume DELETE /api/v1/persistentvolumes
CoreV1Api delete_namespace DELETE /api/v1/namespaces/{name}
CoreV1Api delete_namespaced_config_map DELETE /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1Api delete_namespaced_endpoints DELETE /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1Api delete_namespaced_event DELETE /api/v1/namespaces/{namespace}/events/{name}
CoreV1Api delete_namespaced_limit_range DELETE /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1Api delete_namespaced_persistent_volume_claim DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1Api delete_namespaced_pod DELETE /api/v1/namespaces/{namespace}/pods/{name}
CoreV1Api delete_namespaced_pod_template DELETE /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1Api delete_namespaced_replication_controller DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1Api delete_namespaced_resource_quota DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1Api delete_namespaced_secret DELETE /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1Api delete_namespaced_service DELETE /api/v1/namespaces/{namespace}/services/{name}
CoreV1Api delete_namespaced_service_account DELETE /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1Api delete_node DELETE /api/v1/nodes/{name}
CoreV1Api delete_persistent_volume DELETE /api/v1/persistentvolumes/{name}
CoreV1Api get_api_resources GET /api/v1/
CoreV1Api list_component_status GET /api/v1/componentstatuses
CoreV1Api list_config_map_for_all_namespaces GET /api/v1/configmaps
CoreV1Api list_endpoints_for_all_namespaces GET /api/v1/endpoints
CoreV1Api list_event_for_all_namespaces GET /api/v1/events
CoreV1Api list_limit_range_for_all_namespaces GET /api/v1/limitranges
CoreV1Api list_namespace GET /api/v1/namespaces
CoreV1Api list_namespaced_config_map GET /api/v1/namespaces/{namespace}/configmaps
CoreV1Api list_namespaced_endpoints GET /api/v1/namespaces/{namespace}/endpoints
CoreV1Api list_namespaced_event GET /api/v1/namespaces/{namespace}/events
CoreV1Api list_namespaced_limit_range GET /api/v1/namespaces/{namespace}/limitranges
CoreV1Api list_namespaced_persistent_volume_claim GET /api/v1/namespaces/{namespace}/persistentvolumeclaims
CoreV1Api list_namespaced_pod GET /api/v1/namespaces/{namespace}/pods
CoreV1Api list_namespaced_pod_template GET /api/v1/namespaces/{namespace}/podtemplates
CoreV1Api list_namespaced_replication_controller GET /api/v1/namespaces/{namespace}/replicationcontrollers
CoreV1Api list_namespaced_resource_quota GET /api/v1/namespaces/{namespace}/resourcequotas
CoreV1Api list_namespaced_secret GET /api/v1/namespaces/{namespace}/secrets
CoreV1Api list_namespaced_service GET /api/v1/namespaces/{namespace}/services
CoreV1Api list_namespaced_service_account GET /api/v1/namespaces/{namespace}/serviceaccounts
CoreV1Api list_node GET /api/v1/nodes
CoreV1Api list_persistent_volume GET /api/v1/persistentvolumes
CoreV1Api list_persistent_volume_claim_for_all_namespaces GET /api/v1/persistentvolumeclaims
CoreV1Api list_pod_for_all_namespaces GET /api/v1/pods
CoreV1Api list_pod_template_for_all_namespaces GET /api/v1/podtemplates
CoreV1Api list_replication_controller_for_all_namespaces GET /api/v1/replicationcontrollers
CoreV1Api list_resource_quota_for_all_namespaces GET /api/v1/resourcequotas
CoreV1Api list_secret_for_all_namespaces GET /api/v1/secrets
CoreV1Api list_service_account_for_all_namespaces GET /api/v1/serviceaccounts
CoreV1Api list_service_for_all_namespaces GET /api/v1/services
CoreV1Api patch_namespace PATCH /api/v1/namespaces/{name}
CoreV1Api patch_namespace_status PATCH /api/v1/namespaces/{name}/status
CoreV1Api patch_namespaced_config_map PATCH /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1Api patch_namespaced_endpoints PATCH /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1Api patch_namespaced_event PATCH /api/v1/namespaces/{namespace}/events/{name}
CoreV1Api patch_namespaced_limit_range PATCH /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1Api patch_namespaced_persistent_volume_claim PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1Api patch_namespaced_persistent_volume_claim_status PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
CoreV1Api patch_namespaced_pod PATCH /api/v1/namespaces/{namespace}/pods/{name}
CoreV1Api patch_namespaced_pod_status PATCH /api/v1/namespaces/{namespace}/pods/{name}/status
CoreV1Api patch_namespaced_pod_template PATCH /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1Api patch_namespaced_replication_controller PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1Api patch_namespaced_replication_controller_status PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
CoreV1Api patch_namespaced_resource_quota PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1Api patch_namespaced_resource_quota_status PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
CoreV1Api patch_namespaced_scale_scale PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
CoreV1Api patch_namespaced_secret PATCH /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1Api patch_namespaced_service PATCH /api/v1/namespaces/{namespace}/services/{name}
CoreV1Api patch_namespaced_service_account PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1Api patch_namespaced_service_status PATCH /api/v1/namespaces/{namespace}/services/{name}/status
CoreV1Api patch_node PATCH /api/v1/nodes/{name}
CoreV1Api patch_node_status PATCH /api/v1/nodes/{name}/status
CoreV1Api patch_persistent_volume PATCH /api/v1/persistentvolumes/{name}
CoreV1Api patch_persistent_volume_status PATCH /api/v1/persistentvolumes/{name}/status
CoreV1Api proxy_delete_namespaced_pod DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}
CoreV1Api proxy_delete_namespaced_pod_with_path DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
CoreV1Api proxy_delete_namespaced_service DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}
CoreV1Api proxy_delete_namespaced_service_with_path DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
CoreV1Api proxy_delete_node DELETE /api/v1/proxy/nodes/{name}
CoreV1Api proxy_delete_node_with_path DELETE /api/v1/proxy/nodes/{name}/{path}
CoreV1Api proxy_get_namespaced_pod GET /api/v1/proxy/namespaces/{namespace}/pods/{name}
CoreV1Api proxy_get_namespaced_pod_with_path GET /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
CoreV1Api proxy_get_namespaced_service GET /api/v1/proxy/namespaces/{namespace}/services/{name}
CoreV1Api proxy_get_namespaced_service_with_path GET /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
CoreV1Api proxy_get_node GET /api/v1/proxy/nodes/{name}
CoreV1Api proxy_get_node_with_path GET /api/v1/proxy/nodes/{name}/{path}
CoreV1Api proxy_head_namespaced_pod HEAD /api/v1/proxy/namespaces/{namespace}/pods/{name}
CoreV1Api proxy_head_namespaced_pod_with_path HEAD /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
CoreV1Api proxy_head_namespaced_service HEAD /api/v1/proxy/namespaces/{namespace}/services/{name}
CoreV1Api proxy_head_namespaced_service_with_path HEAD /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
CoreV1Api proxy_head_node HEAD /api/v1/proxy/nodes/{name}
CoreV1Api proxy_head_node_with_path HEAD /api/v1/proxy/nodes/{name}/{path}
CoreV1Api proxy_options_namespaced_pod OPTIONS /api/v1/proxy/namespaces/{namespace}/pods/{name}
CoreV1Api proxy_options_namespaced_pod_with_path OPTIONS /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
CoreV1Api proxy_options_namespaced_service OPTIONS /api/v1/proxy/namespaces/{namespace}/services/{name}
CoreV1Api proxy_options_namespaced_service_with_path OPTIONS /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
CoreV1Api proxy_options_node OPTIONS /api/v1/proxy/nodes/{name}
CoreV1Api proxy_options_node_with_path OPTIONS /api/v1/proxy/nodes/{name}/{path}
CoreV1Api proxy_patch_namespaced_pod PATCH /api/v1/proxy/namespaces/{namespace}/pods/{name}
CoreV1Api proxy_patch_namespaced_pod_with_path PATCH /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
CoreV1Api proxy_patch_namespaced_service PATCH /api/v1/proxy/namespaces/{namespace}/services/{name}
CoreV1Api proxy_patch_namespaced_service_with_path PATCH /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
CoreV1Api proxy_patch_node PATCH /api/v1/proxy/nodes/{name}
CoreV1Api proxy_patch_node_with_path PATCH /api/v1/proxy/nodes/{name}/{path}
CoreV1Api proxy_post_namespaced_pod POST /api/v1/proxy/namespaces/{namespace}/pods/{name}
CoreV1Api proxy_post_namespaced_pod_with_path POST /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
CoreV1Api proxy_post_namespaced_service POST /api/v1/proxy/namespaces/{namespace}/services/{name}
CoreV1Api proxy_post_namespaced_service_with_path POST /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
CoreV1Api proxy_post_node POST /api/v1/proxy/nodes/{name}
CoreV1Api proxy_post_node_with_path POST /api/v1/proxy/nodes/{name}/{path}
CoreV1Api proxy_put_namespaced_pod PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}
CoreV1Api proxy_put_namespaced_pod_with_path PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}
CoreV1Api proxy_put_namespaced_service PUT /api/v1/proxy/namespaces/{namespace}/services/{name}
CoreV1Api proxy_put_namespaced_service_with_path PUT /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}
CoreV1Api proxy_put_node PUT /api/v1/proxy/nodes/{name}
CoreV1Api proxy_put_node_with_path PUT /api/v1/proxy/nodes/{name}/{path}
CoreV1Api read_component_status GET /api/v1/componentstatuses/{name}
CoreV1Api read_namespace GET /api/v1/namespaces/{name}
CoreV1Api read_namespace_status GET /api/v1/namespaces/{name}/status
CoreV1Api read_namespaced_config_map GET /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1Api read_namespaced_endpoints GET /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1Api read_namespaced_event GET /api/v1/namespaces/{namespace}/events/{name}
CoreV1Api read_namespaced_limit_range GET /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1Api read_namespaced_persistent_volume_claim GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1Api read_namespaced_persistent_volume_claim_status GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
CoreV1Api read_namespaced_pod GET /api/v1/namespaces/{namespace}/pods/{name}
CoreV1Api read_namespaced_pod_log GET /api/v1/namespaces/{namespace}/pods/{name}/log
CoreV1Api read_namespaced_pod_status GET /api/v1/namespaces/{namespace}/pods/{name}/status
CoreV1Api read_namespaced_pod_template GET /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1Api read_namespaced_replication_controller GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1Api read_namespaced_replication_controller_status GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
CoreV1Api read_namespaced_resource_quota GET /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1Api read_namespaced_resource_quota_status GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
CoreV1Api read_namespaced_scale_scale GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
CoreV1Api read_namespaced_secret GET /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1Api read_namespaced_service GET /api/v1/namespaces/{namespace}/services/{name}
CoreV1Api read_namespaced_service_account GET /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1Api read_namespaced_service_status GET /api/v1/namespaces/{namespace}/services/{name}/status
CoreV1Api read_node GET /api/v1/nodes/{name}
CoreV1Api read_node_status GET /api/v1/nodes/{name}/status
CoreV1Api read_persistent_volume GET /api/v1/persistentvolumes/{name}
CoreV1Api read_persistent_volume_status GET /api/v1/persistentvolumes/{name}/status
CoreV1Api replace_namespace PUT /api/v1/namespaces/{name}
CoreV1Api replace_namespace_finalize PUT /api/v1/namespaces/{name}/finalize
CoreV1Api replace_namespace_status PUT /api/v1/namespaces/{name}/status
CoreV1Api replace_namespaced_config_map PUT /api/v1/namespaces/{namespace}/configmaps/{name}
CoreV1Api replace_namespaced_endpoints PUT /api/v1/namespaces/{namespace}/endpoints/{name}
CoreV1Api replace_namespaced_event PUT /api/v1/namespaces/{namespace}/events/{name}
CoreV1Api replace_namespaced_limit_range PUT /api/v1/namespaces/{namespace}/limitranges/{name}
CoreV1Api replace_namespaced_persistent_volume_claim PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
CoreV1Api replace_namespaced_persistent_volume_claim_status PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status
CoreV1Api replace_namespaced_pod PUT /api/v1/namespaces/{namespace}/pods/{name}
CoreV1Api replace_namespaced_pod_status PUT /api/v1/namespaces/{namespace}/pods/{name}/status
CoreV1Api replace_namespaced_pod_template PUT /api/v1/namespaces/{namespace}/podtemplates/{name}
CoreV1Api replace_namespaced_replication_controller PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}
CoreV1Api replace_namespaced_replication_controller_status PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status
CoreV1Api replace_namespaced_resource_quota PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}
CoreV1Api replace_namespaced_resource_quota_status PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status
CoreV1Api replace_namespaced_scale_scale PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
CoreV1Api replace_namespaced_secret PUT /api/v1/namespaces/{namespace}/secrets/{name}
CoreV1Api replace_namespaced_service PUT /api/v1/namespaces/{namespace}/services/{name}
CoreV1Api replace_namespaced_service_account PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name}
CoreV1Api replace_namespaced_service_status PUT /api/v1/namespaces/{namespace}/services/{name}/status
CoreV1Api replace_node PUT /api/v1/nodes/{name}
CoreV1Api replace_node_status PUT /api/v1/nodes/{name}/status
CoreV1Api replace_persistent_volume PUT /api/v1/persistentvolumes/{name}
CoreV1Api replace_persistent_volume_status PUT /api/v1/persistentvolumes/{name}/status
ExtensionsApi get_api_group GET /apis/extensions/
ExtensionsV1beta1Api create_namespaced_daemon_set POST /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
ExtensionsV1beta1Api create_namespaced_deployment POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments
ExtensionsV1beta1Api create_namespaced_deployment_rollback_rollback POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback
ExtensionsV1beta1Api create_namespaced_ingress POST /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
ExtensionsV1beta1Api create_namespaced_network_policy POST /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
ExtensionsV1beta1Api create_namespaced_replica_set POST /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
ExtensionsV1beta1Api create_pod_security_policy POST /apis/extensions/v1beta1/podsecuritypolicies
ExtensionsV1beta1Api create_third_party_resource POST /apis/extensions/v1beta1/thirdpartyresources
ExtensionsV1beta1Api delete_collection_namespaced_daemon_set DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
ExtensionsV1beta1Api delete_collection_namespaced_deployment DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments
ExtensionsV1beta1Api delete_collection_namespaced_ingress DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
ExtensionsV1beta1Api delete_collection_namespaced_network_policy DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
ExtensionsV1beta1Api delete_collection_namespaced_replica_set DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
ExtensionsV1beta1Api delete_collection_pod_security_policy DELETE /apis/extensions/v1beta1/podsecuritypolicies
ExtensionsV1beta1Api delete_collection_third_party_resource DELETE /apis/extensions/v1beta1/thirdpartyresources
ExtensionsV1beta1Api delete_namespaced_daemon_set DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1Api delete_namespaced_deployment DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1Api delete_namespaced_ingress DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1Api delete_namespaced_network_policy DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1Api delete_namespaced_replica_set DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1Api delete_pod_security_policy DELETE /apis/extensions/v1beta1/podsecuritypolicies/{name}
ExtensionsV1beta1Api delete_third_party_resource DELETE /apis/extensions/v1beta1/thirdpartyresources/{name}
ExtensionsV1beta1Api get_api_resources GET /apis/extensions/v1beta1/
ExtensionsV1beta1Api list_daemon_set_for_all_namespaces GET /apis/extensions/v1beta1/daemonsets
ExtensionsV1beta1Api list_deployment_for_all_namespaces GET /apis/extensions/v1beta1/deployments
ExtensionsV1beta1Api list_ingress_for_all_namespaces GET /apis/extensions/v1beta1/ingresses
ExtensionsV1beta1Api list_namespaced_daemon_set GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets
ExtensionsV1beta1Api list_namespaced_deployment GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments
ExtensionsV1beta1Api list_namespaced_ingress GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses
ExtensionsV1beta1Api list_namespaced_network_policy GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies
ExtensionsV1beta1Api list_namespaced_replica_set GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets
ExtensionsV1beta1Api list_network_policy_for_all_namespaces GET /apis/extensions/v1beta1/networkpolicies
ExtensionsV1beta1Api list_pod_security_policy GET /apis/extensions/v1beta1/podsecuritypolicies
ExtensionsV1beta1Api list_replica_set_for_all_namespaces GET /apis/extensions/v1beta1/replicasets
ExtensionsV1beta1Api list_third_party_resource GET /apis/extensions/v1beta1/thirdpartyresources
ExtensionsV1beta1Api patch_namespaced_daemon_set PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1Api patch_namespaced_daemon_set_status PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
ExtensionsV1beta1Api patch_namespaced_deployment PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1Api patch_namespaced_deployment_status PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status
ExtensionsV1beta1Api patch_namespaced_deployments_scale PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
ExtensionsV1beta1Api patch_namespaced_ingress PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1Api patch_namespaced_ingress_status PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status
ExtensionsV1beta1Api patch_namespaced_network_policy PATCH /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1Api patch_namespaced_replica_set PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1Api patch_namespaced_replica_set_status PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
ExtensionsV1beta1Api patch_namespaced_replicasets_scale PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
ExtensionsV1beta1Api patch_namespaced_replicationcontrollers_scale PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
ExtensionsV1beta1Api patch_pod_security_policy PATCH /apis/extensions/v1beta1/podsecuritypolicies/{name}
ExtensionsV1beta1Api patch_third_party_resource PATCH /apis/extensions/v1beta1/thirdpartyresources/{name}
ExtensionsV1beta1Api read_namespaced_daemon_set GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1Api read_namespaced_daemon_set_status GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
ExtensionsV1beta1Api read_namespaced_deployment GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1Api read_namespaced_deployment_status GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status
ExtensionsV1beta1Api read_namespaced_deployments_scale GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
ExtensionsV1beta1Api read_namespaced_ingress GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1Api read_namespaced_ingress_status GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status
ExtensionsV1beta1Api read_namespaced_network_policy GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1Api read_namespaced_replica_set GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1Api read_namespaced_replica_set_status GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
ExtensionsV1beta1Api read_namespaced_replicasets_scale GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
ExtensionsV1beta1Api read_namespaced_replicationcontrollers_scale GET /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
ExtensionsV1beta1Api read_pod_security_policy GET /apis/extensions/v1beta1/podsecuritypolicies/{name}
ExtensionsV1beta1Api read_third_party_resource GET /apis/extensions/v1beta1/thirdpartyresources/{name}
ExtensionsV1beta1Api replace_namespaced_daemon_set PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}
ExtensionsV1beta1Api replace_namespaced_daemon_set_status PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status
ExtensionsV1beta1Api replace_namespaced_deployment PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}
ExtensionsV1beta1Api replace_namespaced_deployment_status PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status
ExtensionsV1beta1Api replace_namespaced_deployments_scale PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale
ExtensionsV1beta1Api replace_namespaced_ingress PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}
ExtensionsV1beta1Api replace_namespaced_ingress_status PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status
ExtensionsV1beta1Api replace_namespaced_network_policy PUT /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}
ExtensionsV1beta1Api replace_namespaced_replica_set PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}
ExtensionsV1beta1Api replace_namespaced_replica_set_status PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status
ExtensionsV1beta1Api replace_namespaced_replicasets_scale PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale
ExtensionsV1beta1Api replace_namespaced_replicationcontrollers_scale PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale
ExtensionsV1beta1Api replace_pod_security_policy PUT /apis/extensions/v1beta1/podsecuritypolicies/{name}
ExtensionsV1beta1Api replace_third_party_resource PUT /apis/extensions/v1beta1/thirdpartyresources/{name}
LogsApi log_file_handler GET /logs/{logpath}
LogsApi log_file_list_handler GET /logs/
PolicyApi get_api_group GET /apis/policy/
PolicyV1beta1Api create_namespaced_pod_disruption_budget POST /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1Api delete_collection_namespaced_pod_disruption_budget DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1Api delete_namespaced_pod_disruption_budget DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1Api get_api_resources GET /apis/policy/v1beta1/
PolicyV1beta1Api list_namespaced_pod_disruption_budget GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1Api list_pod_disruption_budget_for_all_namespaces GET /apis/policy/v1beta1/poddisruptionbudgets
PolicyV1beta1Api patch_namespaced_pod_disruption_budget PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1Api patch_namespaced_pod_disruption_budget_status PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1beta1Api read_namespaced_pod_disruption_budget GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1Api read_namespaced_pod_disruption_budget_status GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1beta1Api replace_namespaced_pod_disruption_budget PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1Api replace_namespaced_pod_disruption_budget_status PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
RbacAuthorizationApi get_api_group GET /apis/rbac.authorization.k8s.io/
RbacAuthorizationV1alpha1Api create_cluster_role POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles
RbacAuthorizationV1alpha1Api create_cluster_role_binding POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings
RbacAuthorizationV1alpha1Api create_namespaced_role POST /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles
RbacAuthorizationV1alpha1Api create_namespaced_role_binding POST /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1alpha1Api delete_cluster_role DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1Api delete_cluster_role_binding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1Api delete_collection_cluster_role DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles
RbacAuthorizationV1alpha1Api delete_collection_cluster_role_binding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings
RbacAuthorizationV1alpha1Api delete_collection_namespaced_role DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles
RbacAuthorizationV1alpha1Api delete_collection_namespaced_role_binding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1alpha1Api delete_namespaced_role DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1Api delete_namespaced_role_binding DELETE /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1alpha1Api get_api_resources GET /apis/rbac.authorization.k8s.io/v1alpha1/
RbacAuthorizationV1alpha1Api list_cluster_role GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles
RbacAuthorizationV1alpha1Api list_cluster_role_binding GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings
RbacAuthorizationV1alpha1Api list_namespaced_role GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles
RbacAuthorizationV1alpha1Api list_namespaced_role_binding GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1alpha1Api list_role_binding_for_all_namespaces GET /apis/rbac.authorization.k8s.io/v1alpha1/rolebindings
RbacAuthorizationV1alpha1Api list_role_for_all_namespaces GET /apis/rbac.authorization.k8s.io/v1alpha1/roles
RbacAuthorizationV1alpha1Api patch_cluster_role PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1Api patch_cluster_role_binding PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1Api patch_namespaced_role PATCH /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1Api patch_namespaced_role_binding PATCH /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1alpha1Api read_cluster_role GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1Api read_cluster_role_binding GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1Api read_namespaced_role GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1Api read_namespaced_role_binding GET /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1alpha1Api replace_cluster_role PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}
RbacAuthorizationV1alpha1Api replace_cluster_role_binding PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}
RbacAuthorizationV1alpha1Api replace_namespaced_role PUT /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1alpha1Api replace_namespaced_role_binding PUT /apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1Api create_cluster_role POST /apis/rbac.authorization.k8s.io/v1beta1/clusterroles
RbacAuthorizationV1beta1Api create_cluster_role_binding POST /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings
RbacAuthorizationV1beta1Api create_namespaced_role POST /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles
RbacAuthorizationV1beta1Api create_namespaced_role_binding POST /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1beta1Api delete_cluster_role DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1Api delete_cluster_role_binding DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1Api delete_collection_cluster_role DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterroles
RbacAuthorizationV1beta1Api delete_collection_cluster_role_binding DELETE /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings
RbacAuthorizationV1beta1Api delete_collection_namespaced_role DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles
RbacAuthorizationV1beta1Api delete_collection_namespaced_role_binding DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1beta1Api delete_namespaced_role DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1Api delete_namespaced_role_binding DELETE /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1Api get_api_resources GET /apis/rbac.authorization.k8s.io/v1beta1/
RbacAuthorizationV1beta1Api list_cluster_role GET /apis/rbac.authorization.k8s.io/v1beta1/clusterroles
RbacAuthorizationV1beta1Api list_cluster_role_binding GET /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings
RbacAuthorizationV1beta1Api list_namespaced_role GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles
RbacAuthorizationV1beta1Api list_namespaced_role_binding GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1beta1Api list_role_binding_for_all_namespaces GET /apis/rbac.authorization.k8s.io/v1beta1/rolebindings
RbacAuthorizationV1beta1Api list_role_for_all_namespaces GET /apis/rbac.authorization.k8s.io/v1beta1/roles
RbacAuthorizationV1beta1Api patch_cluster_role PATCH /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1Api patch_cluster_role_binding PATCH /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1Api patch_namespaced_role PATCH /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1Api patch_namespaced_role_binding PATCH /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1Api read_cluster_role GET /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1Api read_cluster_role_binding GET /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1Api read_namespaced_role GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1Api read_namespaced_role_binding GET /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1beta1Api replace_cluster_role PUT /apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}
RbacAuthorizationV1beta1Api replace_cluster_role_binding PUT /apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}
RbacAuthorizationV1beta1Api replace_namespaced_role PUT /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1beta1Api replace_namespaced_role_binding PUT /apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}
SettingsApi get_api_group GET /apis/settings.k8s.io/
SettingsV1alpha1Api create_namespaced_pod_preset POST /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets
SettingsV1alpha1Api delete_collection_namespaced_pod_preset DELETE /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets
SettingsV1alpha1Api delete_namespaced_pod_preset DELETE /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
SettingsV1alpha1Api get_api_resources GET /apis/settings.k8s.io/v1alpha1/
SettingsV1alpha1Api list_namespaced_pod_preset GET /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets
SettingsV1alpha1Api list_pod_preset_for_all_namespaces GET /apis/settings.k8s.io/v1alpha1/podpresets
SettingsV1alpha1Api patch_namespaced_pod_preset PATCH /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
SettingsV1alpha1Api read_namespaced_pod_preset GET /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
SettingsV1alpha1Api replace_namespaced_pod_preset PUT /apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}
StorageApi get_api_group GET /apis/storage.k8s.io/
StorageV1Api create_storage_class POST /apis/storage.k8s.io/v1/storageclasses
StorageV1Api delete_collection_storage_class DELETE /apis/storage.k8s.io/v1/storageclasses
StorageV1Api delete_storage_class DELETE /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1Api get_api_resources GET /apis/storage.k8s.io/v1/
StorageV1Api list_storage_class GET /apis/storage.k8s.io/v1/storageclasses
StorageV1Api patch_storage_class PATCH /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1Api read_storage_class GET /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1Api replace_storage_class PUT /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1beta1Api create_storage_class POST /apis/storage.k8s.io/v1beta1/storageclasses
StorageV1beta1Api delete_collection_storage_class DELETE /apis/storage.k8s.io/v1beta1/storageclasses
StorageV1beta1Api delete_storage_class DELETE /apis/storage.k8s.io/v1beta1/storageclasses/{name}
StorageV1beta1Api get_api_resources GET /apis/storage.k8s.io/v1beta1/
StorageV1beta1Api list_storage_class GET /apis/storage.k8s.io/v1beta1/storageclasses
StorageV1beta1Api patch_storage_class PATCH /apis/storage.k8s.io/v1beta1/storageclasses/{name}
StorageV1beta1Api read_storage_class GET /apis/storage.k8s.io/v1beta1/storageclasses/{name}
StorageV1beta1Api replace_storage_class PUT /apis/storage.k8s.io/v1beta1/storageclasses/{name}
VersionApi get_code GET /version/

Documentation For Models

Documentation For Authorization

BearerToken

  • Type: API key
  • API key parameter name: authorization
  • Location: HTTP header

Author