1 Star 0 Fork 0

lanyulei / python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 160.68 KB
一键复制 编辑 原始数据 按行查看 历史
toto 提交于 2022-01-15 11:35 . Remove duplicate code in documentation

kubernetes.client

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: release-1.22
  • Package version: 22.0.0-snapshot
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

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

(you may need to run pip with root permission: sudo pip install git+https://github.com/kubernetes-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

configuration = kubernetes.client.Configuration()
# Configure API key authorization: BearerToken
configuration.api_key['authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['authorization'] = 'Bearer'

# Defining host is optional and default to http://localhost
configuration.host = "http://localhost"

# Enter a context with an instance of the API kubernetes.client
with kubernetes.client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = kubernetes.client.WellKnownApi(api_client)
    
    try:
        api_response = api_instance.get_service_account_issuer_open_id_configuration()
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling WellKnownApi->get_service_account_issuer_open_id_configuration: %s\n" % e)
    

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
WellKnownApi get_service_account_issuer_open_id_configuration GET /.well-known/openid-configuration/
AdmissionregistrationApi get_api_group GET /apis/admissionregistration.k8s.io/
AdmissionregistrationV1Api create_mutating_webhook_configuration POST /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
AdmissionregistrationV1Api create_validating_webhook_configuration POST /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations
AdmissionregistrationV1Api delete_collection_mutating_webhook_configuration DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
AdmissionregistrationV1Api delete_collection_validating_webhook_configuration DELETE /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations
AdmissionregistrationV1Api delete_mutating_webhook_configuration DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1Api delete_validating_webhook_configuration DELETE /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1Api get_api_resources GET /apis/admissionregistration.k8s.io/v1/
AdmissionregistrationV1Api list_mutating_webhook_configuration GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
AdmissionregistrationV1Api list_validating_webhook_configuration GET /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations
AdmissionregistrationV1Api patch_mutating_webhook_configuration PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1Api patch_validating_webhook_configuration PATCH /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1Api read_mutating_webhook_configuration GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1Api read_validating_webhook_configuration GET /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
AdmissionregistrationV1Api replace_mutating_webhook_configuration PUT /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
AdmissionregistrationV1Api replace_validating_webhook_configuration PUT /apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}
ApiextensionsApi get_api_group GET /apis/apiextensions.k8s.io/
ApiextensionsV1Api create_custom_resource_definition POST /apis/apiextensions.k8s.io/v1/customresourcedefinitions
ApiextensionsV1Api delete_collection_custom_resource_definition DELETE /apis/apiextensions.k8s.io/v1/customresourcedefinitions
ApiextensionsV1Api delete_custom_resource_definition DELETE /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1Api get_api_resources GET /apis/apiextensions.k8s.io/v1/
ApiextensionsV1Api list_custom_resource_definition GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions
ApiextensionsV1Api patch_custom_resource_definition PATCH /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1Api patch_custom_resource_definition_status PATCH /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
ApiextensionsV1Api read_custom_resource_definition GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1Api read_custom_resource_definition_status GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
ApiextensionsV1Api replace_custom_resource_definition PUT /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
ApiextensionsV1Api replace_custom_resource_definition_status PUT /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
ApiregistrationApi get_api_group GET /apis/apiregistration.k8s.io/
ApiregistrationV1Api create_api_service POST /apis/apiregistration.k8s.io/v1/apiservices
ApiregistrationV1Api delete_api_service DELETE /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1Api delete_collection_api_service DELETE /apis/apiregistration.k8s.io/v1/apiservices
ApiregistrationV1Api get_api_resources GET /apis/apiregistration.k8s.io/v1/
ApiregistrationV1Api list_api_service GET /apis/apiregistration.k8s.io/v1/apiservices
ApiregistrationV1Api patch_api_service PATCH /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1Api patch_api_service_status PATCH /apis/apiregistration.k8s.io/v1/apiservices/{name}/status
ApiregistrationV1Api read_api_service GET /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1Api read_api_service_status GET /apis/apiregistration.k8s.io/v1/apiservices/{name}/status
ApiregistrationV1Api replace_api_service PUT /apis/apiregistration.k8s.io/v1/apiservices/{name}
ApiregistrationV1Api replace_api_service_status PUT /apis/apiregistration.k8s.io/v1/apiservices/{name}/status
ApisApi get_api_versions GET /apis/
AppsApi get_api_group GET /apis/apps/
AppsV1Api create_namespaced_controller_revision POST /apis/apps/v1/namespaces/{namespace}/controllerrevisions
AppsV1Api create_namespaced_daemon_set POST /apis/apps/v1/namespaces/{namespace}/daemonsets
AppsV1Api create_namespaced_deployment POST /apis/apps/v1/namespaces/{namespace}/deployments
AppsV1Api create_namespaced_replica_set POST /apis/apps/v1/namespaces/{namespace}/replicasets
AppsV1Api create_namespaced_stateful_set POST /apis/apps/v1/namespaces/{namespace}/statefulsets
AppsV1Api delete_collection_namespaced_controller_revision DELETE /apis/apps/v1/namespaces/{namespace}/controllerrevisions
AppsV1Api delete_collection_namespaced_daemon_set DELETE /apis/apps/v1/namespaces/{namespace}/daemonsets
AppsV1Api delete_collection_namespaced_deployment DELETE /apis/apps/v1/namespaces/{namespace}/deployments
AppsV1Api delete_collection_namespaced_replica_set DELETE /apis/apps/v1/namespaces/{namespace}/replicasets
AppsV1Api delete_collection_namespaced_stateful_set DELETE /apis/apps/v1/namespaces/{namespace}/statefulsets
AppsV1Api delete_namespaced_controller_revision DELETE /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1Api delete_namespaced_daemon_set DELETE /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1Api delete_namespaced_deployment DELETE /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1Api delete_namespaced_replica_set DELETE /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1Api delete_namespaced_stateful_set DELETE /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1Api get_api_resources GET /apis/apps/v1/
AppsV1Api list_controller_revision_for_all_namespaces GET /apis/apps/v1/controllerrevisions
AppsV1Api list_daemon_set_for_all_namespaces GET /apis/apps/v1/daemonsets
AppsV1Api list_deployment_for_all_namespaces GET /apis/apps/v1/deployments
AppsV1Api list_namespaced_controller_revision GET /apis/apps/v1/namespaces/{namespace}/controllerrevisions
AppsV1Api list_namespaced_daemon_set GET /apis/apps/v1/namespaces/{namespace}/daemonsets
AppsV1Api list_namespaced_deployment GET /apis/apps/v1/namespaces/{namespace}/deployments
AppsV1Api list_namespaced_replica_set GET /apis/apps/v1/namespaces/{namespace}/replicasets
AppsV1Api list_namespaced_stateful_set GET /apis/apps/v1/namespaces/{namespace}/statefulsets
AppsV1Api list_replica_set_for_all_namespaces GET /apis/apps/v1/replicasets
AppsV1Api list_stateful_set_for_all_namespaces GET /apis/apps/v1/statefulsets
AppsV1Api patch_namespaced_controller_revision PATCH /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1Api patch_namespaced_daemon_set PATCH /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1Api patch_namespaced_daemon_set_status PATCH /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status
AppsV1Api patch_namespaced_deployment PATCH /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1Api patch_namespaced_deployment_scale PATCH /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale
AppsV1Api patch_namespaced_deployment_status PATCH /apis/apps/v1/namespaces/{namespace}/deployments/{name}/status
AppsV1Api patch_namespaced_replica_set PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1Api patch_namespaced_replica_set_scale PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale
AppsV1Api patch_namespaced_replica_set_status PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
AppsV1Api patch_namespaced_stateful_set PATCH /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1Api patch_namespaced_stateful_set_scale PATCH /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1Api patch_namespaced_stateful_set_status PATCH /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1Api read_namespaced_controller_revision GET /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1Api read_namespaced_daemon_set GET /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1Api read_namespaced_daemon_set_status GET /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status
AppsV1Api read_namespaced_deployment GET /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1Api read_namespaced_deployment_scale GET /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale
AppsV1Api read_namespaced_deployment_status GET /apis/apps/v1/namespaces/{namespace}/deployments/{name}/status
AppsV1Api read_namespaced_replica_set GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1Api read_namespaced_replica_set_scale GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale
AppsV1Api read_namespaced_replica_set_status GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
AppsV1Api read_namespaced_stateful_set GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1Api read_namespaced_stateful_set_scale GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1Api read_namespaced_stateful_set_status GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status
AppsV1Api replace_namespaced_controller_revision PUT /apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}
AppsV1Api replace_namespaced_daemon_set PUT /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
AppsV1Api replace_namespaced_daemon_set_status PUT /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status
AppsV1Api replace_namespaced_deployment PUT /apis/apps/v1/namespaces/{namespace}/deployments/{name}
AppsV1Api replace_namespaced_deployment_scale PUT /apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale
AppsV1Api replace_namespaced_deployment_status PUT /apis/apps/v1/namespaces/{namespace}/deployments/{name}/status
AppsV1Api replace_namespaced_replica_set PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
AppsV1Api replace_namespaced_replica_set_scale PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale
AppsV1Api replace_namespaced_replica_set_status PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
AppsV1Api replace_namespaced_stateful_set PUT /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
AppsV1Api replace_namespaced_stateful_set_scale PUT /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale
AppsV1Api replace_namespaced_stateful_set_status PUT /apis/apps/v1/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/
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_self_subject_rules_review POST /apis/authorization.k8s.io/v1/selfsubjectrulesreviews
AuthorizationV1Api create_subject_access_review POST /apis/authorization.k8s.io/v1/subjectaccessreviews
AuthorizationV1Api get_api_resources GET /apis/authorization.k8s.io/v1/
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
AutoscalingV2beta1Api create_namespaced_horizontal_pod_autoscaler POST /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta1Api delete_collection_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta1Api delete_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1Api get_api_resources GET /apis/autoscaling/v2beta1/
AutoscalingV2beta1Api list_horizontal_pod_autoscaler_for_all_namespaces GET /apis/autoscaling/v2beta1/horizontalpodautoscalers
AutoscalingV2beta1Api list_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta1Api patch_namespaced_horizontal_pod_autoscaler PATCH /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1Api patch_namespaced_horizontal_pod_autoscaler_status PATCH /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta1Api read_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1Api read_namespaced_horizontal_pod_autoscaler_status GET /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta1Api replace_namespaced_horizontal_pod_autoscaler PUT /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta1Api replace_namespaced_horizontal_pod_autoscaler_status PUT /apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta2Api create_namespaced_horizontal_pod_autoscaler POST /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta2Api delete_collection_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta2Api delete_namespaced_horizontal_pod_autoscaler DELETE /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2Api get_api_resources GET /apis/autoscaling/v2beta2/
AutoscalingV2beta2Api list_horizontal_pod_autoscaler_for_all_namespaces GET /apis/autoscaling/v2beta2/horizontalpodautoscalers
AutoscalingV2beta2Api list_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers
AutoscalingV2beta2Api patch_namespaced_horizontal_pod_autoscaler PATCH /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2Api patch_namespaced_horizontal_pod_autoscaler_status PATCH /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta2Api read_namespaced_horizontal_pod_autoscaler GET /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2Api read_namespaced_horizontal_pod_autoscaler_status GET /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
AutoscalingV2beta2Api replace_namespaced_horizontal_pod_autoscaler PUT /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}
AutoscalingV2beta2Api replace_namespaced_horizontal_pod_autoscaler_status PUT /apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status
BatchApi get_api_group GET /apis/batch/
BatchV1Api create_namespaced_cron_job POST /apis/batch/v1/namespaces/{namespace}/cronjobs
BatchV1Api create_namespaced_job POST /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1Api delete_collection_namespaced_cron_job DELETE /apis/batch/v1/namespaces/{namespace}/cronjobs
BatchV1Api delete_collection_namespaced_job DELETE /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1Api delete_namespaced_cron_job DELETE /apis/batch/v1/namespaces/{namespace}/cronjobs/{name}
BatchV1Api delete_namespaced_job DELETE /apis/batch/v1/namespaces/{namespace}/jobs/{name}
BatchV1Api get_api_resources GET /apis/batch/v1/
BatchV1Api list_cron_job_for_all_namespaces GET /apis/batch/v1/cronjobs
BatchV1Api list_job_for_all_namespaces GET /apis/batch/v1/jobs
BatchV1Api list_namespaced_cron_job GET /apis/batch/v1/namespaces/{namespace}/cronjobs
BatchV1Api list_namespaced_job GET /apis/batch/v1/namespaces/{namespace}/jobs
BatchV1Api patch_namespaced_cron_job PATCH /apis/batch/v1/namespaces/{namespace}/cronjobs/{name}
BatchV1Api patch_namespaced_cron_job_status PATCH /apis/batch/v1/namespaces/{namespace}/cronjobs/{name}/status
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_cron_job GET /apis/batch/v1/namespaces/{namespace}/cronjobs/{name}
BatchV1Api read_namespaced_cron_job_status GET /apis/batch/v1/namespaces/{namespace}/cronjobs/{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_cron_job PUT /apis/batch/v1/namespaces/{namespace}/cronjobs/{name}
BatchV1Api replace_namespaced_cron_job_status PUT /apis/batch/v1/namespaces/{namespace}/cronjobs/{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
BatchV1beta1Api create_namespaced_cron_job POST /apis/batch/v1beta1/namespaces/{namespace}/cronjobs
BatchV1beta1Api delete_collection_namespaced_cron_job DELETE /apis/batch/v1beta1/namespaces/{namespace}/cronjobs
BatchV1beta1Api delete_namespaced_cron_job DELETE /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1Api get_api_resources GET /apis/batch/v1beta1/
BatchV1beta1Api list_cron_job_for_all_namespaces GET /apis/batch/v1beta1/cronjobs
BatchV1beta1Api list_namespaced_cron_job GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs
BatchV1beta1Api patch_namespaced_cron_job PATCH /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1Api patch_namespaced_cron_job_status PATCH /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status
BatchV1beta1Api read_namespaced_cron_job GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1Api read_namespaced_cron_job_status GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status
BatchV1beta1Api replace_namespaced_cron_job PUT /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
BatchV1beta1Api replace_namespaced_cron_job_status PUT /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status
CertificatesApi get_api_group GET /apis/certificates.k8s.io/
CertificatesV1Api create_certificate_signing_request POST /apis/certificates.k8s.io/v1/certificatesigningrequests
CertificatesV1Api delete_certificate_signing_request DELETE /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}
CertificatesV1Api delete_collection_certificate_signing_request DELETE /apis/certificates.k8s.io/v1/certificatesigningrequests
CertificatesV1Api get_api_resources GET /apis/certificates.k8s.io/v1/
CertificatesV1Api list_certificate_signing_request GET /apis/certificates.k8s.io/v1/certificatesigningrequests
CertificatesV1Api patch_certificate_signing_request PATCH /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}
CertificatesV1Api patch_certificate_signing_request_approval PATCH /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/approval
CertificatesV1Api patch_certificate_signing_request_status PATCH /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/status
CertificatesV1Api read_certificate_signing_request GET /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}
CertificatesV1Api read_certificate_signing_request_approval GET /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/approval
CertificatesV1Api read_certificate_signing_request_status GET /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/status
CertificatesV1Api replace_certificate_signing_request PUT /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}
CertificatesV1Api replace_certificate_signing_request_approval PUT /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/approval
CertificatesV1Api replace_certificate_signing_request_status PUT /apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/status
CoordinationApi get_api_group GET /apis/coordination.k8s.io/
CoordinationV1Api create_namespaced_lease POST /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases
CoordinationV1Api delete_collection_namespaced_lease DELETE /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases
CoordinationV1Api delete_namespaced_lease DELETE /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
CoordinationV1Api get_api_resources GET /apis/coordination.k8s.io/v1/
CoordinationV1Api list_lease_for_all_namespaces GET /apis/coordination.k8s.io/v1/leases
CoordinationV1Api list_namespaced_lease GET /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases
CoordinationV1Api patch_namespaced_lease PATCH /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
CoordinationV1Api read_namespaced_lease GET /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
CoordinationV1Api replace_namespaced_lease PUT /apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}
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_patch_namespaced_pod_proxy PATCH /api/v1/namespaces/{namespace}/pods/{name}/proxy
CoreV1Api connect_patch_namespaced_pod_proxy_with_path PATCH /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}
CoreV1Api connect_patch_namespaced_service_proxy PATCH /api/v1/namespaces/{namespace}/services/{name}/proxy
CoreV1Api connect_patch_namespaced_service_proxy_with_path PATCH /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}
CoreV1Api connect_patch_node_proxy PATCH /api/v1/nodes/{name}/proxy
CoreV1Api connect_patch_node_proxy_with_path PATCH /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_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_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_binding POST /api/v1/namespaces/{namespace}/pods/{name}/binding
CoreV1Api create_namespaced_pod_eviction POST /api/v1/namespaces/{namespace}/pods/{name}/eviction
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_namespaced_service_account_token POST /api/v1/namespaces/{namespace}/serviceaccounts/{name}/token
CoreV1Api create_node POST /api/v1/nodes
CoreV1Api create_persistent_volume POST /api/v1/persistentvolumes
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_ephemeralcontainers PATCH /api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers
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_scale PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
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_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 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_ephemeralcontainers GET /api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers
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_scale GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
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_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_ephemeralcontainers PUT /api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers
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_scale PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale
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_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
CustomObjectsApi create_cluster_custom_object POST /apis/{group}/{version}/{plural}
CustomObjectsApi create_namespaced_custom_object POST /apis/{group}/{version}/namespaces/{namespace}/{plural}
CustomObjectsApi delete_cluster_custom_object DELETE /apis/{group}/{version}/{plural}/{name}
CustomObjectsApi delete_collection_cluster_custom_object DELETE /apis/{group}/{version}/{plural}
CustomObjectsApi delete_collection_namespaced_custom_object DELETE /apis/{group}/{version}/namespaces/{namespace}/{plural}
CustomObjectsApi delete_namespaced_custom_object DELETE /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsApi get_cluster_custom_object GET /apis/{group}/{version}/{plural}/{name}
CustomObjectsApi get_cluster_custom_object_scale GET /apis/{group}/{version}/{plural}/{name}/scale
CustomObjectsApi get_cluster_custom_object_status GET /apis/{group}/{version}/{plural}/{name}/status
CustomObjectsApi get_namespaced_custom_object GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsApi get_namespaced_custom_object_scale GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale
CustomObjectsApi get_namespaced_custom_object_status GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status
CustomObjectsApi list_cluster_custom_object GET /apis/{group}/{version}/{plural}
CustomObjectsApi list_namespaced_custom_object GET /apis/{group}/{version}/namespaces/{namespace}/{plural}
CustomObjectsApi patch_cluster_custom_object PATCH /apis/{group}/{version}/{plural}/{name}
CustomObjectsApi patch_cluster_custom_object_scale PATCH /apis/{group}/{version}/{plural}/{name}/scale
CustomObjectsApi patch_cluster_custom_object_status PATCH /apis/{group}/{version}/{plural}/{name}/status
CustomObjectsApi patch_namespaced_custom_object PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsApi patch_namespaced_custom_object_scale PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale
CustomObjectsApi patch_namespaced_custom_object_status PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status
CustomObjectsApi replace_cluster_custom_object PUT /apis/{group}/{version}/{plural}/{name}
CustomObjectsApi replace_cluster_custom_object_scale PUT /apis/{group}/{version}/{plural}/{name}/scale
CustomObjectsApi replace_cluster_custom_object_status PUT /apis/{group}/{version}/{plural}/{name}/status
CustomObjectsApi replace_namespaced_custom_object PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}
CustomObjectsApi replace_namespaced_custom_object_scale PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale
CustomObjectsApi replace_namespaced_custom_object_status PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status
DiscoveryApi get_api_group GET /apis/discovery.k8s.io/
DiscoveryV1Api create_namespaced_endpoint_slice POST /apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices
DiscoveryV1Api delete_collection_namespaced_endpoint_slice DELETE /apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices
DiscoveryV1Api delete_namespaced_endpoint_slice DELETE /apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1Api get_api_resources GET /apis/discovery.k8s.io/v1/
DiscoveryV1Api list_endpoint_slice_for_all_namespaces GET /apis/discovery.k8s.io/v1/endpointslices
DiscoveryV1Api list_namespaced_endpoint_slice GET /apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices
DiscoveryV1Api patch_namespaced_endpoint_slice PATCH /apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1Api read_namespaced_endpoint_slice GET /apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1Api replace_namespaced_endpoint_slice PUT /apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1beta1Api create_namespaced_endpoint_slice POST /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
DiscoveryV1beta1Api delete_collection_namespaced_endpoint_slice DELETE /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
DiscoveryV1beta1Api delete_namespaced_endpoint_slice DELETE /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1beta1Api get_api_resources GET /apis/discovery.k8s.io/v1beta1/
DiscoveryV1beta1Api list_endpoint_slice_for_all_namespaces GET /apis/discovery.k8s.io/v1beta1/endpointslices
DiscoveryV1beta1Api list_namespaced_endpoint_slice GET /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
DiscoveryV1beta1Api patch_namespaced_endpoint_slice PATCH /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1beta1Api read_namespaced_endpoint_slice GET /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
DiscoveryV1beta1Api replace_namespaced_endpoint_slice PUT /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
EventsApi get_api_group GET /apis/events.k8s.io/
EventsV1Api create_namespaced_event POST /apis/events.k8s.io/v1/namespaces/{namespace}/events
EventsV1Api delete_collection_namespaced_event DELETE /apis/events.k8s.io/v1/namespaces/{namespace}/events
EventsV1Api delete_namespaced_event DELETE /apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}
EventsV1Api get_api_resources GET /apis/events.k8s.io/v1/
EventsV1Api list_event_for_all_namespaces GET /apis/events.k8s.io/v1/events
EventsV1Api list_namespaced_event GET /apis/events.k8s.io/v1/namespaces/{namespace}/events
EventsV1Api patch_namespaced_event PATCH /apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}
EventsV1Api read_namespaced_event GET /apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}
EventsV1Api replace_namespaced_event PUT /apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}
EventsV1beta1Api create_namespaced_event POST /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events
EventsV1beta1Api delete_collection_namespaced_event DELETE /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events
EventsV1beta1Api delete_namespaced_event DELETE /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
EventsV1beta1Api get_api_resources GET /apis/events.k8s.io/v1beta1/
EventsV1beta1Api list_event_for_all_namespaces GET /apis/events.k8s.io/v1beta1/events
EventsV1beta1Api list_namespaced_event GET /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events
EventsV1beta1Api patch_namespaced_event PATCH /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
EventsV1beta1Api read_namespaced_event GET /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
EventsV1beta1Api replace_namespaced_event PUT /apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}
FlowcontrolApiserverApi get_api_group GET /apis/flowcontrol.apiserver.k8s.io/
FlowcontrolApiserverV1beta1Api create_flow_schema POST /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas
FlowcontrolApiserverV1beta1Api create_priority_level_configuration POST /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations
FlowcontrolApiserverV1beta1Api delete_collection_flow_schema DELETE /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas
FlowcontrolApiserverV1beta1Api delete_collection_priority_level_configuration DELETE /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations
FlowcontrolApiserverV1beta1Api delete_flow_schema DELETE /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}
FlowcontrolApiserverV1beta1Api delete_priority_level_configuration DELETE /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1beta1Api get_api_resources GET /apis/flowcontrol.apiserver.k8s.io/v1beta1/
FlowcontrolApiserverV1beta1Api list_flow_schema GET /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas
FlowcontrolApiserverV1beta1Api list_priority_level_configuration GET /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations
FlowcontrolApiserverV1beta1Api patch_flow_schema PATCH /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}
FlowcontrolApiserverV1beta1Api patch_flow_schema_status PATCH /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}/status
FlowcontrolApiserverV1beta1Api patch_priority_level_configuration PATCH /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1beta1Api patch_priority_level_configuration_status PATCH /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}/status
FlowcontrolApiserverV1beta1Api read_flow_schema GET /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}
FlowcontrolApiserverV1beta1Api read_flow_schema_status GET /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}/status
FlowcontrolApiserverV1beta1Api read_priority_level_configuration GET /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1beta1Api read_priority_level_configuration_status GET /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}/status
FlowcontrolApiserverV1beta1Api replace_flow_schema PUT /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}
FlowcontrolApiserverV1beta1Api replace_flow_schema_status PUT /apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}/status
FlowcontrolApiserverV1beta1Api replace_priority_level_configuration PUT /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}
FlowcontrolApiserverV1beta1Api replace_priority_level_configuration_status PUT /apis/flowcontrol.apiserver.k8s.io/v1beta1/prioritylevelconfigurations/{name}/status
InternalApiserverApi get_api_group GET /apis/internal.apiserver.k8s.io/
InternalApiserverV1alpha1Api create_storage_version POST /apis/internal.apiserver.k8s.io/v1alpha1/storageversions
InternalApiserverV1alpha1Api delete_collection_storage_version DELETE /apis/internal.apiserver.k8s.io/v1alpha1/storageversions
InternalApiserverV1alpha1Api delete_storage_version DELETE /apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}
InternalApiserverV1alpha1Api get_api_resources GET /apis/internal.apiserver.k8s.io/v1alpha1/
InternalApiserverV1alpha1Api list_storage_version GET /apis/internal.apiserver.k8s.io/v1alpha1/storageversions
InternalApiserverV1alpha1Api patch_storage_version PATCH /apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}
InternalApiserverV1alpha1Api patch_storage_version_status PATCH /apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}/status
InternalApiserverV1alpha1Api read_storage_version GET /apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}
InternalApiserverV1alpha1Api read_storage_version_status GET /apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}/status
InternalApiserverV1alpha1Api replace_storage_version PUT /apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}
InternalApiserverV1alpha1Api replace_storage_version_status PUT /apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}/status
LogsApi log_file_handler GET /logs/{logpath}
LogsApi log_file_list_handler GET /logs/
NetworkingApi get_api_group GET /apis/networking.k8s.io/
NetworkingV1Api create_ingress_class POST /apis/networking.k8s.io/v1/ingressclasses
NetworkingV1Api create_namespaced_ingress POST /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses
NetworkingV1Api create_namespaced_network_policy POST /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies
NetworkingV1Api delete_collection_ingress_class DELETE /apis/networking.k8s.io/v1/ingressclasses
NetworkingV1Api delete_collection_namespaced_ingress DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses
NetworkingV1Api delete_collection_namespaced_network_policy DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies
NetworkingV1Api delete_ingress_class DELETE /apis/networking.k8s.io/v1/ingressclasses/{name}
NetworkingV1Api delete_namespaced_ingress DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}
NetworkingV1Api delete_namespaced_network_policy DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NetworkingV1Api get_api_resources GET /apis/networking.k8s.io/v1/
NetworkingV1Api list_ingress_class GET /apis/networking.k8s.io/v1/ingressclasses
NetworkingV1Api list_ingress_for_all_namespaces GET /apis/networking.k8s.io/v1/ingresses
NetworkingV1Api list_namespaced_ingress GET /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses
NetworkingV1Api list_namespaced_network_policy GET /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies
NetworkingV1Api list_network_policy_for_all_namespaces GET /apis/networking.k8s.io/v1/networkpolicies
NetworkingV1Api patch_ingress_class PATCH /apis/networking.k8s.io/v1/ingressclasses/{name}
NetworkingV1Api patch_namespaced_ingress PATCH /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}
NetworkingV1Api patch_namespaced_ingress_status PATCH /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}/status
NetworkingV1Api patch_namespaced_network_policy PATCH /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NetworkingV1Api read_ingress_class GET /apis/networking.k8s.io/v1/ingressclasses/{name}
NetworkingV1Api read_namespaced_ingress GET /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}
NetworkingV1Api read_namespaced_ingress_status GET /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}/status
NetworkingV1Api read_namespaced_network_policy GET /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NetworkingV1Api replace_ingress_class PUT /apis/networking.k8s.io/v1/ingressclasses/{name}
NetworkingV1Api replace_namespaced_ingress PUT /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}
NetworkingV1Api replace_namespaced_ingress_status PUT /apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}/status
NetworkingV1Api replace_namespaced_network_policy PUT /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}
NodeApi get_api_group GET /apis/node.k8s.io/
NodeV1Api create_runtime_class POST /apis/node.k8s.io/v1/runtimeclasses
NodeV1Api delete_collection_runtime_class DELETE /apis/node.k8s.io/v1/runtimeclasses
NodeV1Api delete_runtime_class DELETE /apis/node.k8s.io/v1/runtimeclasses/{name}
NodeV1Api get_api_resources GET /apis/node.k8s.io/v1/
NodeV1Api list_runtime_class GET /apis/node.k8s.io/v1/runtimeclasses
NodeV1Api patch_runtime_class PATCH /apis/node.k8s.io/v1/runtimeclasses/{name}
NodeV1Api read_runtime_class GET /apis/node.k8s.io/v1/runtimeclasses/{name}
NodeV1Api replace_runtime_class PUT /apis/node.k8s.io/v1/runtimeclasses/{name}
NodeV1alpha1Api create_runtime_class POST /apis/node.k8s.io/v1alpha1/runtimeclasses
NodeV1alpha1Api delete_collection_runtime_class DELETE /apis/node.k8s.io/v1alpha1/runtimeclasses
NodeV1alpha1Api delete_runtime_class DELETE /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1alpha1Api get_api_resources GET /apis/node.k8s.io/v1alpha1/
NodeV1alpha1Api list_runtime_class GET /apis/node.k8s.io/v1alpha1/runtimeclasses
NodeV1alpha1Api patch_runtime_class PATCH /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1alpha1Api read_runtime_class GET /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1alpha1Api replace_runtime_class PUT /apis/node.k8s.io/v1alpha1/runtimeclasses/{name}
NodeV1beta1Api create_runtime_class POST /apis/node.k8s.io/v1beta1/runtimeclasses
NodeV1beta1Api delete_collection_runtime_class DELETE /apis/node.k8s.io/v1beta1/runtimeclasses
NodeV1beta1Api delete_runtime_class DELETE /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
NodeV1beta1Api get_api_resources GET /apis/node.k8s.io/v1beta1/
NodeV1beta1Api list_runtime_class GET /apis/node.k8s.io/v1beta1/runtimeclasses
NodeV1beta1Api patch_runtime_class PATCH /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
NodeV1beta1Api read_runtime_class GET /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
NodeV1beta1Api replace_runtime_class PUT /apis/node.k8s.io/v1beta1/runtimeclasses/{name}
OpenidApi get_service_account_issuer_open_id_keyset GET /openid/v1/jwks/
PolicyApi get_api_group GET /apis/policy/
PolicyV1Api create_namespaced_pod_disruption_budget POST /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1Api delete_collection_namespaced_pod_disruption_budget DELETE /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1Api delete_namespaced_pod_disruption_budget DELETE /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1Api get_api_resources GET /apis/policy/v1/
PolicyV1Api list_namespaced_pod_disruption_budget GET /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1Api list_pod_disruption_budget_for_all_namespaces GET /apis/policy/v1/poddisruptionbudgets
PolicyV1Api patch_namespaced_pod_disruption_budget PATCH /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1Api patch_namespaced_pod_disruption_budget_status PATCH /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1Api read_namespaced_pod_disruption_budget GET /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1Api read_namespaced_pod_disruption_budget_status GET /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1Api replace_namespaced_pod_disruption_budget PUT /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1Api replace_namespaced_pod_disruption_budget_status PUT /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status
PolicyV1beta1Api create_namespaced_pod_disruption_budget POST /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1Api create_pod_security_policy POST /apis/policy/v1beta1/podsecuritypolicies
PolicyV1beta1Api delete_collection_namespaced_pod_disruption_budget DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets
PolicyV1beta1Api delete_collection_pod_security_policy DELETE /apis/policy/v1beta1/podsecuritypolicies
PolicyV1beta1Api delete_namespaced_pod_disruption_budget DELETE /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}
PolicyV1beta1Api delete_pod_security_policy DELETE /apis/policy/v1beta1/podsecuritypolicies/{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 list_pod_security_policy GET /apis/policy/v1beta1/podsecuritypolicies
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 patch_pod_security_policy PATCH /apis/policy/v1beta1/podsecuritypolicies/{name}
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 read_pod_security_policy GET /apis/policy/v1beta1/podsecuritypolicies/{name}
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
PolicyV1beta1Api replace_pod_security_policy PUT /apis/policy/v1beta1/podsecuritypolicies/{name}
RbacAuthorizationApi get_api_group GET /apis/rbac.authorization.k8s.io/
RbacAuthorizationV1Api create_cluster_role POST /apis/rbac.authorization.k8s.io/v1/clusterroles
RbacAuthorizationV1Api create_cluster_role_binding POST /apis/rbac.authorization.k8s.io/v1/clusterrolebindings
RbacAuthorizationV1Api create_namespaced_role POST /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles
RbacAuthorizationV1Api create_namespaced_role_binding POST /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1Api delete_cluster_role DELETE /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1Api delete_cluster_role_binding DELETE /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1Api delete_collection_cluster_role DELETE /apis/rbac.authorization.k8s.io/v1/clusterroles
RbacAuthorizationV1Api delete_collection_cluster_role_binding DELETE /apis/rbac.authorization.k8s.io/v1/clusterrolebindings
RbacAuthorizationV1Api delete_collection_namespaced_role DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles
RbacAuthorizationV1Api delete_collection_namespaced_role_binding DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1Api delete_namespaced_role DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1Api delete_namespaced_role_binding DELETE /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1Api get_api_resources GET /apis/rbac.authorization.k8s.io/v1/
RbacAuthorizationV1Api list_cluster_role GET /apis/rbac.authorization.k8s.io/v1/clusterroles
RbacAuthorizationV1Api list_cluster_role_binding GET /apis/rbac.authorization.k8s.io/v1/clusterrolebindings
RbacAuthorizationV1Api list_namespaced_role GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles
RbacAuthorizationV1Api list_namespaced_role_binding GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings
RbacAuthorizationV1Api list_role_binding_for_all_namespaces GET /apis/rbac.authorization.k8s.io/v1/rolebindings
RbacAuthorizationV1Api list_role_for_all_namespaces GET /apis/rbac.authorization.k8s.io/v1/roles
RbacAuthorizationV1Api patch_cluster_role PATCH /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1Api patch_cluster_role_binding PATCH /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1Api patch_namespaced_role PATCH /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1Api patch_namespaced_role_binding PATCH /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1Api read_cluster_role GET /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1Api read_cluster_role_binding GET /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1Api read_namespaced_role GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1Api read_namespaced_role_binding GET /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
RbacAuthorizationV1Api replace_cluster_role PUT /apis/rbac.authorization.k8s.io/v1/clusterroles/{name}
RbacAuthorizationV1Api replace_cluster_role_binding PUT /apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}
RbacAuthorizationV1Api replace_namespaced_role PUT /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}
RbacAuthorizationV1Api replace_namespaced_role_binding PUT /apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}
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}
SchedulingApi get_api_group GET /apis/scheduling.k8s.io/
SchedulingV1Api create_priority_class POST /apis/scheduling.k8s.io/v1/priorityclasses
SchedulingV1Api delete_collection_priority_class DELETE /apis/scheduling.k8s.io/v1/priorityclasses
SchedulingV1Api delete_priority_class DELETE /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1Api get_api_resources GET /apis/scheduling.k8s.io/v1/
SchedulingV1Api list_priority_class GET /apis/scheduling.k8s.io/v1/priorityclasses
SchedulingV1Api patch_priority_class PATCH /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1Api read_priority_class GET /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1Api replace_priority_class PUT /apis/scheduling.k8s.io/v1/priorityclasses/{name}
SchedulingV1alpha1Api create_priority_class POST /apis/scheduling.k8s.io/v1alpha1/priorityclasses
SchedulingV1alpha1Api delete_collection_priority_class DELETE /apis/scheduling.k8s.io/v1alpha1/priorityclasses
SchedulingV1alpha1Api delete_priority_class DELETE /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
SchedulingV1alpha1Api get_api_resources GET /apis/scheduling.k8s.io/v1alpha1/
SchedulingV1alpha1Api list_priority_class GET /apis/scheduling.k8s.io/v1alpha1/priorityclasses
SchedulingV1alpha1Api patch_priority_class PATCH /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
SchedulingV1alpha1Api read_priority_class GET /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
SchedulingV1alpha1Api replace_priority_class PUT /apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}
StorageApi get_api_group GET /apis/storage.k8s.io/
StorageV1Api create_csi_driver POST /apis/storage.k8s.io/v1/csidrivers
StorageV1Api create_csi_node POST /apis/storage.k8s.io/v1/csinodes
StorageV1Api create_storage_class POST /apis/storage.k8s.io/v1/storageclasses
StorageV1Api create_volume_attachment POST /apis/storage.k8s.io/v1/volumeattachments
StorageV1Api delete_collection_csi_driver DELETE /apis/storage.k8s.io/v1/csidrivers
StorageV1Api delete_collection_csi_node DELETE /apis/storage.k8s.io/v1/csinodes
StorageV1Api delete_collection_storage_class DELETE /apis/storage.k8s.io/v1/storageclasses
StorageV1Api delete_collection_volume_attachment DELETE /apis/storage.k8s.io/v1/volumeattachments
StorageV1Api delete_csi_driver DELETE /apis/storage.k8s.io/v1/csidrivers/{name}
StorageV1Api delete_csi_node DELETE /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1Api delete_storage_class DELETE /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1Api delete_volume_attachment DELETE /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1Api get_api_resources GET /apis/storage.k8s.io/v1/
StorageV1Api list_csi_driver GET /apis/storage.k8s.io/v1/csidrivers
StorageV1Api list_csi_node GET /apis/storage.k8s.io/v1/csinodes
StorageV1Api list_storage_class GET /apis/storage.k8s.io/v1/storageclasses
StorageV1Api list_volume_attachment GET /apis/storage.k8s.io/v1/volumeattachments
StorageV1Api patch_csi_driver PATCH /apis/storage.k8s.io/v1/csidrivers/{name}
StorageV1Api patch_csi_node PATCH /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1Api patch_storage_class PATCH /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1Api patch_volume_attachment PATCH /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1Api patch_volume_attachment_status PATCH /apis/storage.k8s.io/v1/volumeattachments/{name}/status
StorageV1Api read_csi_driver GET /apis/storage.k8s.io/v1/csidrivers/{name}
StorageV1Api read_csi_node GET /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1Api read_storage_class GET /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1Api read_volume_attachment GET /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1Api read_volume_attachment_status GET /apis/storage.k8s.io/v1/volumeattachments/{name}/status
StorageV1Api replace_csi_driver PUT /apis/storage.k8s.io/v1/csidrivers/{name}
StorageV1Api replace_csi_node PUT /apis/storage.k8s.io/v1/csinodes/{name}
StorageV1Api replace_storage_class PUT /apis/storage.k8s.io/v1/storageclasses/{name}
StorageV1Api replace_volume_attachment PUT /apis/storage.k8s.io/v1/volumeattachments/{name}
StorageV1Api replace_volume_attachment_status PUT /apis/storage.k8s.io/v1/volumeattachments/{name}/status
StorageV1alpha1Api create_namespaced_csi_storage_capacity POST /apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities
StorageV1alpha1Api create_volume_attachment POST /apis/storage.k8s.io/v1alpha1/volumeattachments
StorageV1alpha1Api delete_collection_namespaced_csi_storage_capacity DELETE /apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities
StorageV1alpha1Api delete_collection_volume_attachment DELETE /apis/storage.k8s.io/v1alpha1/volumeattachments
StorageV1alpha1Api delete_namespaced_csi_storage_capacity DELETE /apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities/{name}
StorageV1alpha1Api delete_volume_attachment DELETE /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1alpha1Api get_api_resources GET /apis/storage.k8s.io/v1alpha1/
StorageV1alpha1Api list_csi_storage_capacity_for_all_namespaces GET /apis/storage.k8s.io/v1alpha1/csistoragecapacities
StorageV1alpha1Api list_namespaced_csi_storage_capacity GET /apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities
StorageV1alpha1Api list_volume_attachment GET /apis/storage.k8s.io/v1alpha1/volumeattachments
StorageV1alpha1Api patch_namespaced_csi_storage_capacity PATCH /apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities/{name}
StorageV1alpha1Api patch_volume_attachment PATCH /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1alpha1Api read_namespaced_csi_storage_capacity GET /apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities/{name}
StorageV1alpha1Api read_volume_attachment GET /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1alpha1Api replace_namespaced_csi_storage_capacity PUT /apis/storage.k8s.io/v1alpha1/namespaces/{namespace}/csistoragecapacities/{name}
StorageV1alpha1Api replace_volume_attachment PUT /apis/storage.k8s.io/v1alpha1/volumeattachments/{name}
StorageV1beta1Api create_namespaced_csi_storage_capacity POST /apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities
StorageV1beta1Api delete_collection_namespaced_csi_storage_capacity DELETE /apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities
StorageV1beta1Api delete_namespaced_csi_storage_capacity DELETE /apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities/{name}
StorageV1beta1Api get_api_resources GET /apis/storage.k8s.io/v1beta1/
StorageV1beta1Api list_csi_storage_capacity_for_all_namespaces GET /apis/storage.k8s.io/v1beta1/csistoragecapacities
StorageV1beta1Api list_namespaced_csi_storage_capacity GET /apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities
StorageV1beta1Api patch_namespaced_csi_storage_capacity PATCH /apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities/{name}
StorageV1beta1Api read_namespaced_csi_storage_capacity GET /apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities/{name}
StorageV1beta1Api replace_namespaced_csi_storage_capacity PUT /apis/storage.k8s.io/v1beta1/namespaces/{namespace}/csistoragecapacities/{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

1
https://gitee.com/yllan/python.git
git@gitee.com:yllan/python.git
yllan
python
python
master

搜索帮助