OpenShift provides builds, application lifecycle, image content management, and administrative policy on top of Kubernetes. The API allows consistent management of those objects. All API operations are authenticated via an Authorization bearer token that is provided for service accounts as a generated secret (in JWT form) or via the native OAuth endpoint located at /oauth/authorize. Core infrastructure components may use openshift.client certificates that require no authentication. All API operations return a 'resourceVersion' string that represents the version of the object in the underlying storage. The standard LIST operation performs a snapshot read of the underlying objects, returning a resourceVersion representing a consistent version of the listed objects. The WATCH operation allows all updates to a set of objects after the provided resourceVersion to be observed by a openshift.client. By listing and beginning a watch from the returned resourceVersion, openshift.clients may observe a consistent view of the state of one or more objects. Note that WATCH always returns the update after the provided resourceVersion. Watch may be extended a limited time in the past - using etcd 2 the watch window is 1000 events (which on a large cluster may only be a few tens of seconds) so openshift.clients must explicitly handle the "watch to old error" by re-listing. Objects are divided into two rough categories - those that have a lifecycle and must reflect the state of the cluster, and those that have no state. Objects with lifecycle typically have three main sections: * 'metadata' common to all objects * a 'spec' that represents the desired state * a 'status' that represents how much of the desired state is reflected on the cluster at the current time Objects that have no state have 'metadata' but may lack a 'spec' or 'status' section. Objects are divided into those that are namespace scoped (only exist inside of a namespace) and those that are cluster scoped (exist outside of a namespace). A namespace scoped resource will be deleted when the namespace is deleted and cannot be created if the namespace has not yet been created or is in the process of deletion. Cluster scoped resources are typically only accessible to admins - resources like nodes, persistent volumes, and cluster policy. All objects have a schema that is a combination of the 'kind' and 'apiVersion' fields. This schema is additive only for any given version - no backwards incompatible changes are allowed without incrementing the apiVersion. The server will return and accept a number of standard responses that share a common schema - for instance, the common error type is 'metav1.Status' (described below) and will be returned on any error from the API server. The API is available in multiple serialization formats - the default is JSON (Accept: application/json and Content-Type: application/json) but openshift.clients may also use YAML (application/yaml) or the native Protobuf schema (application/vnd.kubernetes.protobuf). Note that the format of the WATCH API call is slightly different - for JSON it returns newline delimited objects while for Protobuf it returns length-delimited frames (4 bytes in network-order) that contain a 'versioned.Watch' Protobuf object. See the OpenShift documentation at https://docs.openshift.org for more information.
This Python package is automatically generated by the Swagger Codegen project:
- API version: latest
- Package version: 0.7.0
- Build package: io.swagger.codegen.languages.PythonClientCodegen
Python 2.7 and 3.4+
If the python package is hosted on Github, you can install directly from Github
pip install git+https://github.com/openshift/openshift-restclient-python.git(you may need to run pip with root permission: sudo pip install git+https://github.com/openshift/openshift-restclient-python.git)
Then import the package:
import openshift.client 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 openshift.clientPlease follow the installation procedure and then run the following:
from __future__ import print_function
import time
import openshift.client
from kubernetes.client.rest import ApiException
from pprint import pprint
# Configure API key authorization: BearerToken
openshift.client.configuration.api_key['authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# openshift.client.configuration.api_key_prefix['authorization'] = 'Bearer'
# Configure OAuth2 access token for authorization: Oauth2AccessToken
openshift.client.configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Configure OAuth2 access token for authorization: Oauth2Implicit
openshift.client.configuration.access_token = 'YOUR_ACCESS_TOKEN'
# create an instance of the API class
api_instance = openshift.client.AdmissionregistrationApi()
try:
api_response = api_instance.get_api_group()
pprint(api_response)
except ApiException as e:
print("Exception when calling AdmissionregistrationApi->get_api_group: %s\n" % e)All URIs are relative to https://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AdmissionregistrationApi | get_api_group | GET /apis/admissionregistration.k8s.io/ | |
| AdmissionregistrationV1beta1Api | create_mutating_webhook_configuration | POST /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations | |
| AdmissionregistrationV1beta1Api | create_validating_webhook_configuration | POST /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations | |
| AdmissionregistrationV1beta1Api | delete_collection_mutating_webhook_configuration | DELETE /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations | |
| AdmissionregistrationV1beta1Api | delete_collection_validating_webhook_configuration | DELETE /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations | |
| AdmissionregistrationV1beta1Api | delete_mutating_webhook_configuration | DELETE /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name} | |
| AdmissionregistrationV1beta1Api | delete_validating_webhook_configuration | DELETE /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name} | |
| AdmissionregistrationV1beta1Api | get_api_resources | GET /apis/admissionregistration.k8s.io/v1beta1/ | |
| AdmissionregistrationV1beta1Api | list_mutating_webhook_configuration | GET /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations | |
| AdmissionregistrationV1beta1Api | list_validating_webhook_configuration | GET /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations | |
| AdmissionregistrationV1beta1Api | patch_mutating_webhook_configuration | PATCH /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name} | |
| AdmissionregistrationV1beta1Api | patch_validating_webhook_configuration | PATCH /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name} | |
| AdmissionregistrationV1beta1Api | read_mutating_webhook_configuration | GET /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name} | |
| AdmissionregistrationV1beta1Api | read_validating_webhook_configuration | GET /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name} | |
| AdmissionregistrationV1beta1Api | replace_mutating_webhook_configuration | PUT /apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name} | |
| AdmissionregistrationV1beta1Api | replace_validating_webhook_configuration | PUT /apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name} | |
| ApiregistrationApi | get_api_group | GET /apis/apiregistration.k8s.io/ | |
| ApiregistrationV1beta1Api | create_api_service | POST /apis/apiregistration.k8s.io/v1beta1/apiservices | |
| ApiregistrationV1beta1Api | delete_api_service | DELETE /apis/apiregistration.k8s.io/v1beta1/apiservices/{name} | |
| ApiregistrationV1beta1Api | delete_collection_api_service | DELETE /apis/apiregistration.k8s.io/v1beta1/apiservices | |
| ApiregistrationV1beta1Api | get_api_resources | GET /apis/apiregistration.k8s.io/v1beta1/ | |
| ApiregistrationV1beta1Api | list_api_service | GET /apis/apiregistration.k8s.io/v1beta1/apiservices | |
| ApiregistrationV1beta1Api | patch_api_service | PATCH /apis/apiregistration.k8s.io/v1beta1/apiservices/{name} | |
| ApiregistrationV1beta1Api | read_api_service | GET /apis/apiregistration.k8s.io/v1beta1/apiservices/{name} | |
| ApiregistrationV1beta1Api | replace_api_service | PUT /apis/apiregistration.k8s.io/v1beta1/apiservices/{name} | |
| ApiregistrationV1beta1Api | replace_api_service_status | PUT /apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status | |
| ApisApi | get_api_versions | GET /apis/ | |
| AppsApi | get_api_group | GET /apis/apps/ | |
| AppsOpenshiftIoApi | get_api_group | GET /apis/apps.openshift.io/ | |
| AppsOpenshiftIoV1Api | create_deployment_config_for_all_namespaces | POST /apis/apps.openshift.io/v1/deploymentconfigs | |
| AppsOpenshiftIoV1Api | create_namespaced_deployment_config | POST /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs | |
| AppsOpenshiftIoV1Api | create_namespaced_deployment_config_instantiate | POST /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/instantiate | |
| AppsOpenshiftIoV1Api | create_namespaced_deployment_config_rollback | POST /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/rollback | |
| AppsOpenshiftIoV1Api | delete_collection_namespaced_deployment_config | DELETE /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs | |
| AppsOpenshiftIoV1Api | delete_namespaced_deployment_config | DELETE /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | get_api_resources | GET /apis/apps.openshift.io/v1/ | |
| AppsOpenshiftIoV1Api | list_deployment_config_for_all_namespaces | GET /apis/apps.openshift.io/v1/deploymentconfigs | |
| AppsOpenshiftIoV1Api | list_namespaced_deployment_config | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs | |
| AppsOpenshiftIoV1Api | patch_namespaced_deployment_config | PATCH /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | patch_namespaced_deployment_config_scale | PATCH /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| AppsOpenshiftIoV1Api | patch_namespaced_deployment_config_status | PATCH /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| AppsOpenshiftIoV1Api | read_namespaced_deployment_config | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | read_namespaced_deployment_config_log | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/log | |
| AppsOpenshiftIoV1Api | read_namespaced_deployment_config_scale | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| AppsOpenshiftIoV1Api | read_namespaced_deployment_config_status | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| AppsOpenshiftIoV1Api | replace_namespaced_deployment_config | PUT /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | replace_namespaced_deployment_config_scale | PUT /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| AppsOpenshiftIoV1Api | replace_namespaced_deployment_config_status | PUT /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| AppsV1Api | create_controller_revision_for_all_namespaces | POST /apis/apps/v1/controllerrevisions | |
| AppsV1Api | create_daemon_set_for_all_namespaces | POST /apis/apps/v1/daemonsets | |
| AppsV1Api | create_deployment_for_all_namespaces | POST /apis/apps/v1/deployments | |
| 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 | create_replica_set_for_all_namespaces | POST /apis/apps/v1/replicasets | |
| AppsV1Api | create_stateful_set_for_all_namespaces | POST /apis/apps/v1/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 | |
| AppsV1beta1Api | create_controller_revision_for_all_namespaces | POST /apis/apps/v1beta1/controllerrevisions | |
| AppsV1beta1Api | create_deployment_for_all_namespaces | POST /apis/apps/v1beta1/deployments | |
| AppsV1beta1Api | create_namespaced_controller_revision | POST /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions | |
| AppsV1beta1Api | create_namespaced_deployment | POST /apis/apps/v1beta1/namespaces/{namespace}/deployments | |
| AppsV1beta1Api | create_namespaced_deployment_rollback | POST /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback | |
| AppsV1beta1Api | create_namespaced_stateful_set | POST /apis/apps/v1beta1/namespaces/{namespace}/statefulsets | |
| AppsV1beta1Api | create_stateful_set_for_all_namespaces | POST /apis/apps/v1beta1/statefulsets | |
| AppsV1beta1Api | delete_collection_namespaced_controller_revision | DELETE /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions | |
| 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_controller_revision | DELETE /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name} | |
| 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_controller_revision_for_all_namespaces | GET /apis/apps/v1beta1/controllerrevisions | |
| AppsV1beta1Api | list_deployment_for_all_namespaces | GET /apis/apps/v1beta1/deployments | |
| AppsV1beta1Api | list_namespaced_controller_revision | GET /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions | |
| 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_controller_revision | PATCH /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name} | |
| AppsV1beta1Api | patch_namespaced_deployment | PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name} | |
| AppsV1beta1Api | patch_namespaced_deployment_scale | PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| AppsV1beta1Api | patch_namespaced_deployment_status | PATCH /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| AppsV1beta1Api | patch_namespaced_stateful_set | PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta1Api | patch_namespaced_stateful_set_scale | PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale | |
| AppsV1beta1Api | patch_namespaced_stateful_set_status | PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | |
| AppsV1beta1Api | read_namespaced_controller_revision | GET /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name} | |
| AppsV1beta1Api | read_namespaced_deployment | GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name} | |
| AppsV1beta1Api | read_namespaced_deployment_scale | GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| AppsV1beta1Api | read_namespaced_deployment_status | GET /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| AppsV1beta1Api | read_namespaced_stateful_set | GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta1Api | read_namespaced_stateful_set_scale | GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale | |
| AppsV1beta1Api | read_namespaced_stateful_set_status | GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | |
| AppsV1beta1Api | replace_namespaced_controller_revision | PUT /apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name} | |
| AppsV1beta1Api | replace_namespaced_deployment | PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name} | |
| AppsV1beta1Api | replace_namespaced_deployment_scale | PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| AppsV1beta1Api | replace_namespaced_deployment_status | PUT /apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| AppsV1beta1Api | replace_namespaced_stateful_set | PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta1Api | replace_namespaced_stateful_set_scale | PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale | |
| AppsV1beta1Api | replace_namespaced_stateful_set_status | PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | |
| AppsV1beta2Api | create_controller_revision_for_all_namespaces | POST /apis/apps/v1beta2/controllerrevisions | |
| AppsV1beta2Api | create_daemon_set_for_all_namespaces | POST /apis/apps/v1beta2/daemonsets | |
| AppsV1beta2Api | create_deployment_for_all_namespaces | POST /apis/apps/v1beta2/deployments | |
| AppsV1beta2Api | create_namespaced_controller_revision | POST /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions | |
| AppsV1beta2Api | create_namespaced_daemon_set | POST /apis/apps/v1beta2/namespaces/{namespace}/daemonsets | |
| AppsV1beta2Api | create_namespaced_deployment | POST /apis/apps/v1beta2/namespaces/{namespace}/deployments | |
| AppsV1beta2Api | create_namespaced_replica_set | POST /apis/apps/v1beta2/namespaces/{namespace}/replicasets | |
| AppsV1beta2Api | create_namespaced_stateful_set | POST /apis/apps/v1beta2/namespaces/{namespace}/statefulsets | |
| AppsV1beta2Api | create_replica_set_for_all_namespaces | POST /apis/apps/v1beta2/replicasets | |
| AppsV1beta2Api | create_stateful_set_for_all_namespaces | POST /apis/apps/v1beta2/statefulsets | |
| AppsV1beta2Api | delete_collection_namespaced_controller_revision | DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions | |
| AppsV1beta2Api | delete_collection_namespaced_daemon_set | DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets | |
| AppsV1beta2Api | delete_collection_namespaced_deployment | DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments | |
| AppsV1beta2Api | delete_collection_namespaced_replica_set | DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets | |
| AppsV1beta2Api | delete_collection_namespaced_stateful_set | DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets | |
| AppsV1beta2Api | delete_namespaced_controller_revision | DELETE /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name} | |
| AppsV1beta2Api | delete_namespaced_daemon_set | DELETE /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name} | |
| AppsV1beta2Api | delete_namespaced_deployment | DELETE /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name} | |
| AppsV1beta2Api | delete_namespaced_replica_set | DELETE /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name} | |
| AppsV1beta2Api | delete_namespaced_stateful_set | DELETE /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta2Api | get_api_resources | GET /apis/apps/v1beta2/ | |
| AppsV1beta2Api | list_controller_revision_for_all_namespaces | GET /apis/apps/v1beta2/controllerrevisions | |
| AppsV1beta2Api | list_daemon_set_for_all_namespaces | GET /apis/apps/v1beta2/daemonsets | |
| AppsV1beta2Api | list_deployment_for_all_namespaces | GET /apis/apps/v1beta2/deployments | |
| AppsV1beta2Api | list_namespaced_controller_revision | GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions | |
| AppsV1beta2Api | list_namespaced_daemon_set | GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets | |
| AppsV1beta2Api | list_namespaced_deployment | GET /apis/apps/v1beta2/namespaces/{namespace}/deployments | |
| AppsV1beta2Api | list_namespaced_replica_set | GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets | |
| AppsV1beta2Api | list_namespaced_stateful_set | GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets | |
| AppsV1beta2Api | list_replica_set_for_all_namespaces | GET /apis/apps/v1beta2/replicasets | |
| AppsV1beta2Api | list_stateful_set_for_all_namespaces | GET /apis/apps/v1beta2/statefulsets | |
| AppsV1beta2Api | patch_namespaced_controller_revision | PATCH /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name} | |
| AppsV1beta2Api | patch_namespaced_daemon_set | PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name} | |
| AppsV1beta2Api | patch_namespaced_daemon_set_status | PATCH /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status | |
| AppsV1beta2Api | patch_namespaced_deployment | PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name} | |
| AppsV1beta2Api | patch_namespaced_deployment_scale | PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale | |
| AppsV1beta2Api | patch_namespaced_deployment_status | PATCH /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status | |
| AppsV1beta2Api | patch_namespaced_replica_set | PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name} | |
| AppsV1beta2Api | patch_namespaced_replica_set_scale | PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale | |
| AppsV1beta2Api | patch_namespaced_replica_set_status | PATCH /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status | |
| AppsV1beta2Api | patch_namespaced_stateful_set | PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta2Api | patch_namespaced_stateful_set_scale | PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale | |
| AppsV1beta2Api | patch_namespaced_stateful_set_status | PATCH /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status | |
| AppsV1beta2Api | read_namespaced_controller_revision | GET /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name} | |
| AppsV1beta2Api | read_namespaced_daemon_set | GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name} | |
| AppsV1beta2Api | read_namespaced_daemon_set_status | GET /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status | |
| AppsV1beta2Api | read_namespaced_deployment | GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name} | |
| AppsV1beta2Api | read_namespaced_deployment_scale | GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale | |
| AppsV1beta2Api | read_namespaced_deployment_status | GET /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status | |
| AppsV1beta2Api | read_namespaced_replica_set | GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name} | |
| AppsV1beta2Api | read_namespaced_replica_set_scale | GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale | |
| AppsV1beta2Api | read_namespaced_replica_set_status | GET /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status | |
| AppsV1beta2Api | read_namespaced_stateful_set | GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta2Api | read_namespaced_stateful_set_scale | GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale | |
| AppsV1beta2Api | read_namespaced_stateful_set_status | GET /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status | |
| AppsV1beta2Api | replace_namespaced_controller_revision | PUT /apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name} | |
| AppsV1beta2Api | replace_namespaced_daemon_set | PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name} | |
| AppsV1beta2Api | replace_namespaced_daemon_set_status | PUT /apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status | |
| AppsV1beta2Api | replace_namespaced_deployment | PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name} | |
| AppsV1beta2Api | replace_namespaced_deployment_scale | PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale | |
| AppsV1beta2Api | replace_namespaced_deployment_status | PUT /apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status | |
| AppsV1beta2Api | replace_namespaced_replica_set | PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name} | |
| AppsV1beta2Api | replace_namespaced_replica_set_scale | PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale | |
| AppsV1beta2Api | replace_namespaced_replica_set_status | PUT /apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status | |
| AppsV1beta2Api | replace_namespaced_stateful_set | PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta2Api | replace_namespaced_stateful_set_scale | PUT /apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale | |
| AppsV1beta2Api | replace_namespaced_stateful_set_status | PUT /apis/apps/v1beta2/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/ | |
| AuthorizationOpenshiftIoApi | get_api_group | GET /apis/authorization.openshift.io/ | |
| AuthorizationOpenshiftIoV1Api | create_cluster_role | POST /apis/authorization.openshift.io/v1/clusterroles | |
| AuthorizationOpenshiftIoV1Api | create_cluster_role_binding | POST /apis/authorization.openshift.io/v1/clusterrolebindings | |
| AuthorizationOpenshiftIoV1Api | create_local_resource_access_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/localresourceaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_local_subject_access_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/localsubjectaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_namespaced_local_resource_access_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/localresourceaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_namespaced_local_subject_access_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/localsubjectaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_namespaced_role | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles | |
| AuthorizationOpenshiftIoV1Api | create_namespaced_role_binding | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings | |
| AuthorizationOpenshiftIoV1Api | create_namespaced_role_binding_restriction | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | create_namespaced_self_subject_rules_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/selfsubjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | create_namespaced_subject_rules_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/subjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | create_resource_access_review | POST /apis/authorization.openshift.io/v1/resourceaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_role_binding_for_all_namespaces | POST /apis/authorization.openshift.io/v1/rolebindings | |
| AuthorizationOpenshiftIoV1Api | create_role_binding_restriction_for_all_namespaces | POST /apis/authorization.openshift.io/v1/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | create_role_for_all_namespaces | POST /apis/authorization.openshift.io/v1/roles | |
| AuthorizationOpenshiftIoV1Api | create_self_subject_rules_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/selfsubjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | create_subject_access_review | POST /apis/authorization.openshift.io/v1/subjectaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_subject_rules_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/subjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | delete_cluster_role | DELETE /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_cluster_role_binding | DELETE /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_collection_namespaced_role_binding_restriction | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | delete_namespaced_role | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_namespaced_role_binding | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_namespaced_role_binding_restriction | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| AuthorizationOpenshiftIoV1Api | get_api_resources | GET /apis/authorization.openshift.io/v1/ | |
| AuthorizationOpenshiftIoV1Api | list_cluster_role | GET /apis/authorization.openshift.io/v1/clusterroles | |
| AuthorizationOpenshiftIoV1Api | list_cluster_role_binding | GET /apis/authorization.openshift.io/v1/clusterrolebindings | |
| AuthorizationOpenshiftIoV1Api | list_namespaced_role | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles | |
| AuthorizationOpenshiftIoV1Api | list_namespaced_role_binding | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings | |
| AuthorizationOpenshiftIoV1Api | list_namespaced_role_binding_restriction | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | list_role_binding_for_all_namespaces | GET /apis/authorization.openshift.io/v1/rolebindings | |
| AuthorizationOpenshiftIoV1Api | list_role_binding_restriction_for_all_namespaces | GET /apis/authorization.openshift.io/v1/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | list_role_for_all_namespaces | GET /apis/authorization.openshift.io/v1/roles | |
| AuthorizationOpenshiftIoV1Api | patch_cluster_role | PATCH /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_cluster_role_binding | PATCH /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_namespaced_role | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_namespaced_role_binding | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_namespaced_role_binding_restriction | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| AuthorizationOpenshiftIoV1Api | read_cluster_role | GET /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | read_cluster_role_binding | GET /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | read_namespaced_role | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | read_namespaced_role_binding | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | read_namespaced_role_binding_restriction | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_cluster_role | PUT /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_cluster_role_binding | PUT /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_namespaced_role | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_namespaced_role_binding | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_namespaced_role_binding_restriction | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| AuthorizationV1Api | create_local_subject_access_review_for_all_namespaces | POST /apis/authorization.k8s.io/v1/localsubjectaccessreviews | |
| 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/ | |
| AuthorizationV1beta1Api | create_local_subject_access_review_for_all_namespaces | POST /apis/authorization.k8s.io/v1beta1/localsubjectaccessreviews | |
| 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_self_subject_rules_review | POST /apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews | |
| 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_horizontal_pod_autoscaler_for_all_namespaces | POST /apis/autoscaling/v1/horizontalpodautoscalers | |
| 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_horizontal_pod_autoscaler_for_all_namespaces | POST /apis/autoscaling/v2beta1/horizontalpodautoscalers | |
| 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 | |
| BatchApi | get_api_group | GET /apis/batch/ | |
| BatchV1Api | create_job_for_all_namespaces | POST /apis/batch/v1/jobs | |
| 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 | |
| BatchV1beta1Api | create_cron_job_for_all_namespaces | POST /apis/batch/v1beta1/cronjobs | |
| 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 | |
| BatchV2alpha1Api | create_cron_job_for_all_namespaces | POST /apis/batch/v2alpha1/cronjobs | |
| BatchV2alpha1Api | create_namespaced_cron_job | POST /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs | |
| BatchV2alpha1Api | delete_collection_namespaced_cron_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs | |
| BatchV2alpha1Api | delete_namespaced_cron_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{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 | 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 | 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 | 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 | |
| BuildOpenshiftIoApi | get_api_group | GET /apis/build.openshift.io/ | |
| BuildOpenshiftIoV1Api | connect_post_namespaced_build_config_instantiatebinary | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/instantiatebinary | |
| BuildOpenshiftIoV1Api | connect_post_namespaced_build_config_webhooks | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks | |
| BuildOpenshiftIoV1Api | connect_post_namespaced_build_config_webhooks_with_path | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks/{path} | |
| BuildOpenshiftIoV1Api | create_build_config_for_all_namespaces | POST /apis/build.openshift.io/v1/buildconfigs | |
| BuildOpenshiftIoV1Api | create_build_for_all_namespaces | POST /apis/build.openshift.io/v1/builds | |
| BuildOpenshiftIoV1Api | create_namespaced_build | POST /apis/build.openshift.io/v1/namespaces/{namespace}/builds | |
| BuildOpenshiftIoV1Api | create_namespaced_build_clone | POST /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name}/clone | |
| BuildOpenshiftIoV1Api | create_namespaced_build_config | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs | |
| BuildOpenshiftIoV1Api | create_namespaced_build_config_instantiate | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/instantiate | |
| BuildOpenshiftIoV1Api | delete_collection_namespaced_build | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/builds | |
| BuildOpenshiftIoV1Api | delete_collection_namespaced_build_config | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs | |
| BuildOpenshiftIoV1Api | delete_namespaced_build | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | delete_namespaced_build_config | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | get_api_resources | GET /apis/build.openshift.io/v1/ | |
| BuildOpenshiftIoV1Api | list_build_config_for_all_namespaces | GET /apis/build.openshift.io/v1/buildconfigs | |
| BuildOpenshiftIoV1Api | list_build_for_all_namespaces | GET /apis/build.openshift.io/v1/builds | |
| BuildOpenshiftIoV1Api | list_namespaced_build | GET /apis/build.openshift.io/v1/namespaces/{namespace}/builds | |
| BuildOpenshiftIoV1Api | list_namespaced_build_config | GET /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs | |
| BuildOpenshiftIoV1Api | patch_namespaced_build | PATCH /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | patch_namespaced_build_config | PATCH /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | read_namespaced_build | GET /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | read_namespaced_build_config | GET /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | read_namespaced_build_log | GET /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name}/log | |
| BuildOpenshiftIoV1Api | replace_namespaced_build | PUT /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | replace_namespaced_build_config | PUT /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | replace_namespaced_build_details | PUT /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name}/details | |
| 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_legacy_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_binding_for_all_namespaces | POST /api/v1/bindings | |
| CoreV1Api | create_config_map_for_all_namespaces | POST /api/v1/configmaps | |
| CoreV1Api | create_endpoints_for_all_namespaces | POST /api/v1/endpoints | |
| CoreV1Api | create_event_for_all_namespaces | POST /api/v1/events | |
| CoreV1Api | create_limit_range_for_all_namespaces | POST /api/v1/limitranges | |
| 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_node | POST /api/v1/nodes | |
| CoreV1Api | create_persistent_volume | POST /api/v1/persistentvolumes | |
| CoreV1Api | create_persistent_volume_claim_for_all_namespaces | POST /api/v1/persistentvolumeclaims | |
| CoreV1Api | create_pod_for_all_namespaces | POST /api/v1/pods | |
| CoreV1Api | create_pod_template_for_all_namespaces | POST /api/v1/podtemplates | |
| CoreV1Api | create_replication_controller_for_all_namespaces | POST /api/v1/replicationcontrollers | |
| CoreV1Api | create_resource_quota_for_all_namespaces | POST /api/v1/resourcequotas | |
| CoreV1Api | create_secret_for_all_namespaces | POST /api/v1/secrets | |
| CoreV1Api | create_security_context_constraints | POST /api/v1/securitycontextconstraints | |
| CoreV1Api | create_service_account_for_all_namespaces | POST /api/v1/serviceaccounts | |
| CoreV1Api | create_service_for_all_namespaces | POST /api/v1/services | |
| 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_collection_security_context_constraints | DELETE /api/v1/securitycontextconstraints | |
| 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 | delete_security_context_constraints | DELETE /api/v1/securitycontextconstraints/{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_security_context_constraints | GET /api/v1/securitycontextconstraints | |
| 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_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 | patch_security_context_constraints | PATCH /api/v1/securitycontextconstraints/{name} | |
| 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_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 | read_security_context_constraints | GET /api/v1/securitycontextconstraints/{name} | |
| 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_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 | |
| CoreV1Api | replace_security_context_constraints | PUT /api/v1/securitycontextconstraints/{name} | |
| 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_namespaced_custom_object | DELETE /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name} | |
| CustomObjectsApi | get_cluster_custom_object | GET /apis/{group}/{version}/{plural}/{name} | |
| CustomObjectsApi | get_namespaced_custom_object | GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name} | |
| 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_namespaced_custom_object | PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name} | |
| CustomObjectsApi | replace_cluster_custom_object | PUT /apis/{group}/{version}/{plural}/{name} | |
| CustomObjectsApi | replace_namespaced_custom_object | PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name} | |
| EventsApi | get_api_group | GET /apis/events.k8s.io/ | |
| EventsV1beta1Api | create_event_for_all_namespaces | POST /apis/events.k8s.io/v1beta1/events | |
| 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} | |
| ExtensionsApi | get_api_group | GET /apis/extensions/ | |
| ExtensionsV1beta1Api | create_daemon_set_for_all_namespaces | POST /apis/extensions/v1beta1/daemonsets | |
| ExtensionsV1beta1Api | create_deployment_for_all_namespaces | POST /apis/extensions/v1beta1/deployments | |
| ExtensionsV1beta1Api | create_ingress_for_all_namespaces | POST /apis/extensions/v1beta1/ingresses | |
| 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 | 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_network_policy_for_all_namespaces | POST /apis/extensions/v1beta1/networkpolicies | |
| ExtensionsV1beta1Api | create_pod_security_policy | POST /apis/extensions/v1beta1/podsecuritypolicies | |
| ExtensionsV1beta1Api | create_replica_set_for_all_namespaces | POST /apis/extensions/v1beta1/replicasets | |
| 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_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 | 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 | 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_scale | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| ExtensionsV1beta1Api | patch_namespaced_deployment_status | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| 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_scale | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | |
| ExtensionsV1beta1Api | patch_namespaced_replica_set_status | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | |
| ExtensionsV1beta1Api | patch_namespaced_replication_controller_dummy_scale | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| ExtensionsV1beta1Api | patch_pod_security_policy | PATCH /apis/extensions/v1beta1/podsecuritypolicies/{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_scale | GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| ExtensionsV1beta1Api | read_namespaced_deployment_status | GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| 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_scale | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | |
| ExtensionsV1beta1Api | read_namespaced_replica_set_status | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | |
| ExtensionsV1beta1Api | read_namespaced_replication_controller_dummy_scale | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| ExtensionsV1beta1Api | read_pod_security_policy | GET /apis/extensions/v1beta1/podsecuritypolicies/{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_scale | PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| ExtensionsV1beta1Api | replace_namespaced_deployment_status | PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| 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_scale | PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | |
| ExtensionsV1beta1Api | replace_namespaced_replica_set_status | PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | |
| ExtensionsV1beta1Api | replace_namespaced_replication_controller_dummy_scale | PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| ExtensionsV1beta1Api | replace_pod_security_policy | PUT /apis/extensions/v1beta1/podsecuritypolicies/{name} | |
| ImageOpenshiftIoApi | get_api_group | GET /apis/image.openshift.io/ | |
| ImageOpenshiftIoV1Api | create_image | POST /apis/image.openshift.io/v1/images | |
| ImageOpenshiftIoV1Api | create_image_signature | POST /apis/image.openshift.io/v1/imagesignatures | |
| ImageOpenshiftIoV1Api | create_image_stream_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreams | |
| ImageOpenshiftIoV1Api | create_image_stream_import_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreamimports | |
| ImageOpenshiftIoV1Api | create_image_stream_mapping_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreammappings | |
| ImageOpenshiftIoV1Api | create_image_stream_tag_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreamtags | |
| ImageOpenshiftIoV1Api | create_namespaced_image_stream | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams | |
| ImageOpenshiftIoV1Api | create_namespaced_image_stream_import | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamimports | |
| ImageOpenshiftIoV1Api | create_namespaced_image_stream_mapping | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreammappings | |
| ImageOpenshiftIoV1Api | create_namespaced_image_stream_tag | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags | |
| ImageOpenshiftIoV1Api | delete_collection_image | DELETE /apis/image.openshift.io/v1/images | |
| ImageOpenshiftIoV1Api | delete_collection_namespaced_image_stream | DELETE /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams | |
| ImageOpenshiftIoV1Api | delete_image | DELETE /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | delete_image_signature | DELETE /apis/image.openshift.io/v1/imagesignatures/{name} | |
| ImageOpenshiftIoV1Api | delete_namespaced_image_stream | DELETE /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | delete_namespaced_image_stream_tag | DELETE /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| ImageOpenshiftIoV1Api | get_api_resources | GET /apis/image.openshift.io/v1/ | |
| ImageOpenshiftIoV1Api | list_image | GET /apis/image.openshift.io/v1/images | |
| ImageOpenshiftIoV1Api | list_image_stream_for_all_namespaces | GET /apis/image.openshift.io/v1/imagestreams | |
| ImageOpenshiftIoV1Api | list_image_stream_tag_for_all_namespaces | GET /apis/image.openshift.io/v1/imagestreamtags | |
| ImageOpenshiftIoV1Api | list_namespaced_image_stream | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams | |
| ImageOpenshiftIoV1Api | list_namespaced_image_stream_tag | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags | |
| ImageOpenshiftIoV1Api | patch_image | PATCH /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | patch_namespaced_image_stream | PATCH /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | patch_namespaced_image_stream_status | PATCH /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| ImageOpenshiftIoV1Api | patch_namespaced_image_stream_tag | PATCH /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| ImageOpenshiftIoV1Api | read_image | GET /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | read_namespaced_image_stream | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | read_namespaced_image_stream_image | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamimages/{name} | |
| ImageOpenshiftIoV1Api | read_namespaced_image_stream_secrets | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/secrets | |
| ImageOpenshiftIoV1Api | read_namespaced_image_stream_status | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| ImageOpenshiftIoV1Api | read_namespaced_image_stream_tag | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| ImageOpenshiftIoV1Api | replace_image | PUT /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | replace_namespaced_image_stream | PUT /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | replace_namespaced_image_stream_status | PUT /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| ImageOpenshiftIoV1Api | replace_namespaced_image_stream_tag | PUT /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| NetworkOpenshiftIoApi | get_api_group | GET /apis/network.openshift.io/ | |
| NetworkOpenshiftIoV1Api | create_cluster_network | POST /apis/network.openshift.io/v1/clusternetworks | |
| NetworkOpenshiftIoV1Api | create_egress_network_policy_for_all_namespaces | POST /apis/network.openshift.io/v1/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | create_host_subnet | POST /apis/network.openshift.io/v1/hostsubnets | |
| NetworkOpenshiftIoV1Api | create_namespaced_egress_network_policy | POST /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | create_net_namespace | POST /apis/network.openshift.io/v1/netnamespaces | |
| NetworkOpenshiftIoV1Api | delete_cluster_network | DELETE /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | delete_collection_cluster_network | DELETE /apis/network.openshift.io/v1/clusternetworks | |
| NetworkOpenshiftIoV1Api | delete_collection_host_subnet | DELETE /apis/network.openshift.io/v1/hostsubnets | |
| NetworkOpenshiftIoV1Api | delete_collection_namespaced_egress_network_policy | DELETE /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | delete_collection_net_namespace | DELETE /apis/network.openshift.io/v1/netnamespaces | |
| NetworkOpenshiftIoV1Api | delete_host_subnet | DELETE /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | delete_namespaced_egress_network_policy | DELETE /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | delete_net_namespace | DELETE /apis/network.openshift.io/v1/netnamespaces/{name} | |
| NetworkOpenshiftIoV1Api | get_api_resources | GET /apis/network.openshift.io/v1/ | |
| NetworkOpenshiftIoV1Api | list_cluster_network | GET /apis/network.openshift.io/v1/clusternetworks | |
| NetworkOpenshiftIoV1Api | list_egress_network_policy_for_all_namespaces | GET /apis/network.openshift.io/v1/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | list_host_subnet | GET /apis/network.openshift.io/v1/hostsubnets | |
| NetworkOpenshiftIoV1Api | list_namespaced_egress_network_policy | GET /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | list_net_namespace | GET /apis/network.openshift.io/v1/netnamespaces | |
| NetworkOpenshiftIoV1Api | patch_cluster_network | PATCH /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | patch_host_subnet | PATCH /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | patch_namespaced_egress_network_policy | PATCH /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | patch_net_namespace | PATCH /apis/network.openshift.io/v1/netnamespaces/{name} | |
| NetworkOpenshiftIoV1Api | read_cluster_network | GET /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | read_host_subnet | GET /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | read_namespaced_egress_network_policy | GET /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | read_net_namespace | GET /apis/network.openshift.io/v1/netnamespaces/{name} | |
| NetworkOpenshiftIoV1Api | replace_cluster_network | PUT /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | replace_host_subnet | PUT /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | replace_namespaced_egress_network_policy | PUT /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | replace_net_namespace | PUT /apis/network.openshift.io/v1/netnamespaces/{name} | |
| NetworkingApi | get_api_group | GET /apis/networking.k8s.io/ | |
| NetworkingV1Api | create_namespaced_network_policy | POST /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies | |
| NetworkingV1Api | create_network_policy_for_all_namespaces | POST /apis/networking.k8s.io/v1/networkpolicies | |
| NetworkingV1Api | delete_collection_namespaced_network_policy | DELETE /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies | |
| 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_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_namespaced_network_policy | PATCH /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name} | |
| NetworkingV1Api | read_namespaced_network_policy | GET /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name} | |
| NetworkingV1Api | replace_namespaced_network_policy | PUT /apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name} | |
| OapiApi | connect_post_namespaced_build_config_instantiatebinary | POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/instantiatebinary | |
| OapiApi | connect_post_namespaced_build_config_webhooks | POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks | |
| OapiApi | connect_post_namespaced_build_config_webhooks_with_path | POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks/{path} | |
| OapiApi | create_build_config_for_all_namespaces | POST /oapi/v1/buildconfigs | |
| OapiApi | create_build_for_all_namespaces | POST /oapi/v1/builds | |
| OapiApi | create_cluster_network | POST /oapi/v1/clusternetworks | |
| OapiApi | create_cluster_resource_quota | POST /oapi/v1/clusterresourcequotas | |
| OapiApi | create_cluster_role | POST /oapi/v1/clusterroles | |
| OapiApi | create_cluster_role_binding | POST /oapi/v1/clusterrolebindings | |
| OapiApi | create_deployment_config_for_all_namespaces | POST /oapi/v1/deploymentconfigs | |
| OapiApi | create_egress_network_policy_for_all_namespaces | POST /oapi/v1/egressnetworkpolicies | |
| OapiApi | create_group | POST /oapi/v1/groups | |
| OapiApi | create_host_subnet | POST /oapi/v1/hostsubnets | |
| OapiApi | create_identity | POST /oapi/v1/identities | |
| OapiApi | create_image | POST /oapi/v1/images | |
| OapiApi | create_image_signature | POST /oapi/v1/imagesignatures | |
| OapiApi | create_image_stream_for_all_namespaces | POST /oapi/v1/imagestreams | |
| OapiApi | create_image_stream_import_for_all_namespaces | POST /oapi/v1/imagestreamimports | |
| OapiApi | create_image_stream_mapping_for_all_namespaces | POST /oapi/v1/imagestreammappings | |
| OapiApi | create_image_stream_tag_for_all_namespaces | POST /oapi/v1/imagestreamtags | |
| OapiApi | create_local_resource_access_review_for_all_namespaces | POST /oapi/v1/localresourceaccessreviews | |
| OapiApi | create_local_subject_access_review_for_all_namespaces | POST /oapi/v1/localsubjectaccessreviews | |
| OapiApi | create_namespaced_build | POST /oapi/v1/namespaces/{namespace}/builds | |
| OapiApi | create_namespaced_build_clone | POST /oapi/v1/namespaces/{namespace}/builds/{name}/clone | |
| OapiApi | create_namespaced_build_config | POST /oapi/v1/namespaces/{namespace}/buildconfigs | |
| OapiApi | create_namespaced_build_config_instantiate | POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/instantiate | |
| OapiApi | create_namespaced_deployment_config | POST /oapi/v1/namespaces/{namespace}/deploymentconfigs | |
| OapiApi | create_namespaced_deployment_config_instantiate | POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/instantiate | |
| OapiApi | create_namespaced_deployment_config_rollback_rollback | POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/rollback | |
| OapiApi | create_namespaced_egress_network_policy | POST /oapi/v1/namespaces/{namespace}/egressnetworkpolicies | |
| OapiApi | create_namespaced_image_stream | POST /oapi/v1/namespaces/{namespace}/imagestreams | |
| OapiApi | create_namespaced_image_stream_import | POST /oapi/v1/namespaces/{namespace}/imagestreamimports | |
| OapiApi | create_namespaced_image_stream_mapping | POST /oapi/v1/namespaces/{namespace}/imagestreammappings | |
| OapiApi | create_namespaced_image_stream_tag | POST /oapi/v1/namespaces/{namespace}/imagestreamtags | |
| OapiApi | create_namespaced_local_resource_access_review | POST /oapi/v1/namespaces/{namespace}/localresourceaccessreviews | |
| OapiApi | create_namespaced_local_subject_access_review | POST /oapi/v1/namespaces/{namespace}/localsubjectaccessreviews | |
| OapiApi | create_namespaced_pod_security_policy_review | POST /oapi/v1/namespaces/{namespace}/podsecuritypolicyreviews | |
| OapiApi | create_namespaced_pod_security_policy_self_subject_review | POST /oapi/v1/namespaces/{namespace}/podsecuritypolicyselfsubjectreviews | |
| OapiApi | create_namespaced_pod_security_policy_subject_review | POST /oapi/v1/namespaces/{namespace}/podsecuritypolicysubjectreviews | |
| OapiApi | create_namespaced_processed_template | POST /oapi/v1/namespaces/{namespace}/processedtemplates | |
| OapiApi | create_namespaced_resource_access_review | POST /oapi/v1/namespaces/{namespace}/resourceaccessreviews | |
| OapiApi | create_namespaced_role | POST /oapi/v1/namespaces/{namespace}/roles | |
| OapiApi | create_namespaced_role_binding | POST /oapi/v1/namespaces/{namespace}/rolebindings | |
| OapiApi | create_namespaced_role_binding_restriction | POST /oapi/v1/namespaces/{namespace}/rolebindingrestrictions | |
| OapiApi | create_namespaced_route | POST /oapi/v1/namespaces/{namespace}/routes | |
| OapiApi | create_namespaced_self_subject_rules_review | POST /oapi/v1/namespaces/{namespace}/selfsubjectrulesreviews | |
| OapiApi | create_namespaced_subject_access_review | POST /oapi/v1/namespaces/{namespace}/subjectaccessreviews | |
| OapiApi | create_namespaced_subject_rules_review | POST /oapi/v1/namespaces/{namespace}/subjectrulesreviews | |
| OapiApi | create_namespaced_template | POST /oapi/v1/namespaces/{namespace}/templates | |
| OapiApi | create_net_namespace | POST /oapi/v1/netnamespaces | |
| OapiApi | create_o_auth_access_token | POST /oapi/v1/oauthaccesstokens | |
| OapiApi | create_o_auth_authorize_token | POST /oapi/v1/oauthauthorizetokens | |
| OapiApi | create_o_auth_client | POST /oapi/v1/oauthclients | |
| OapiApi | create_o_auth_client_authorization | POST /oapi/v1/oauthclientauthorizations | |
| OapiApi | create_pod_security_policy_review_for_all_namespaces | POST /oapi/v1/podsecuritypolicyreviews | |
| OapiApi | create_pod_security_policy_self_subject_review_for_all_namespaces | POST /oapi/v1/podsecuritypolicyselfsubjectreviews | |
| OapiApi | create_pod_security_policy_subject_review_for_all_namespaces | POST /oapi/v1/podsecuritypolicysubjectreviews | |
| OapiApi | create_processed_template_for_all_namespaces_v1 | POST /oapi/v1/processedtemplates | |
| OapiApi | create_project | POST /oapi/v1/projects | |
| OapiApi | create_project_request | POST /oapi/v1/projectrequests | |
| OapiApi | create_resource_access_review_for_all_namespaces | POST /oapi/v1/resourceaccessreviews | |
| OapiApi | create_role_binding_for_all_namespaces | POST /oapi/v1/rolebindings | |
| OapiApi | create_role_binding_restriction_for_all_namespaces | POST /oapi/v1/rolebindingrestrictions | |
| OapiApi | create_role_for_all_namespaces | POST /oapi/v1/roles | |
| OapiApi | create_route_for_all_namespaces | POST /oapi/v1/routes | |
| OapiApi | create_self_subject_rules_review_for_all_namespaces | POST /oapi/v1/selfsubjectrulesreviews | |
| OapiApi | create_subject_access_review_for_all_namespaces | POST /oapi/v1/subjectaccessreviews | |
| OapiApi | create_subject_rules_review_for_all_namespaces | POST /oapi/v1/subjectrulesreviews | |
| OapiApi | create_template_for_all_namespaces | POST /oapi/v1/templates | |
| OapiApi | create_user | POST /oapi/v1/users | |
| OapiApi | create_user_identity_mapping | POST /oapi/v1/useridentitymappings | |
| OapiApi | delete_cluster_network | DELETE /oapi/v1/clusternetworks/{name} | |
| OapiApi | delete_cluster_resource_quota | DELETE /oapi/v1/clusterresourcequotas/{name} | |
| OapiApi | delete_cluster_role | DELETE /oapi/v1/clusterroles/{name} | |
| OapiApi | delete_cluster_role_binding | DELETE /oapi/v1/clusterrolebindings/{name} | |
| OapiApi | delete_collection_cluster_network | DELETE /oapi/v1/clusternetworks | |
| OapiApi | delete_collection_cluster_resource_quota | DELETE /oapi/v1/clusterresourcequotas | |
| OapiApi | delete_collection_group | DELETE /oapi/v1/groups | |
| OapiApi | delete_collection_host_subnet | DELETE /oapi/v1/hostsubnets | |
| OapiApi | delete_collection_identity | DELETE /oapi/v1/identities | |
| OapiApi | delete_collection_image | DELETE /oapi/v1/images | |
| OapiApi | delete_collection_namespaced_build | DELETE /oapi/v1/namespaces/{namespace}/builds | |
| OapiApi | delete_collection_namespaced_build_config | DELETE /oapi/v1/namespaces/{namespace}/buildconfigs | |
| OapiApi | delete_collection_namespaced_deployment_config | DELETE /oapi/v1/namespaces/{namespace}/deploymentconfigs | |
| OapiApi | delete_collection_namespaced_egress_network_policy | DELETE /oapi/v1/namespaces/{namespace}/egressnetworkpolicies | |
| OapiApi | delete_collection_namespaced_image_stream | DELETE /oapi/v1/namespaces/{namespace}/imagestreams | |
| OapiApi | delete_collection_namespaced_role_binding_restriction | DELETE /oapi/v1/namespaces/{namespace}/rolebindingrestrictions | |
| OapiApi | delete_collection_namespaced_route | DELETE /oapi/v1/namespaces/{namespace}/routes | |
| OapiApi | delete_collection_namespaced_template | DELETE /oapi/v1/namespaces/{namespace}/templates | |
| OapiApi | delete_collection_net_namespace | DELETE /oapi/v1/netnamespaces | |
| OapiApi | delete_collection_o_auth_access_token | DELETE /oapi/v1/oauthaccesstokens | |
| OapiApi | delete_collection_o_auth_authorize_token | DELETE /oapi/v1/oauthauthorizetokens | |
| OapiApi | delete_collection_o_auth_client | DELETE /oapi/v1/oauthclients | |
| OapiApi | delete_collection_o_auth_client_authorization | DELETE /oapi/v1/oauthclientauthorizations | |
| OapiApi | delete_collection_user | DELETE /oapi/v1/users | |
| OapiApi | delete_group | DELETE /oapi/v1/groups/{name} | |
| OapiApi | delete_host_subnet | DELETE /oapi/v1/hostsubnets/{name} | |
| OapiApi | delete_identity | DELETE /oapi/v1/identities/{name} | |
| OapiApi | delete_image | DELETE /oapi/v1/images/{name} | |
| OapiApi | delete_image_signature | DELETE /oapi/v1/imagesignatures/{name} | |
| OapiApi | delete_namespaced_build | DELETE /oapi/v1/namespaces/{namespace}/builds/{name} | |
| OapiApi | delete_namespaced_build_config | DELETE /oapi/v1/namespaces/{namespace}/buildconfigs/{name} | |
| OapiApi | delete_namespaced_deployment_config | DELETE /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| OapiApi | delete_namespaced_egress_network_policy | DELETE /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| OapiApi | delete_namespaced_image_stream | DELETE /oapi/v1/namespaces/{namespace}/imagestreams/{name} | |
| OapiApi | delete_namespaced_image_stream_tag | DELETE /oapi/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| OapiApi | delete_namespaced_role | DELETE /oapi/v1/namespaces/{namespace}/roles/{name} | |
| OapiApi | delete_namespaced_role_binding | DELETE /oapi/v1/namespaces/{namespace}/rolebindings/{name} | |
| OapiApi | delete_namespaced_role_binding_restriction | DELETE /oapi/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| OapiApi | delete_namespaced_route | DELETE /oapi/v1/namespaces/{namespace}/routes/{name} | |
| OapiApi | delete_namespaced_template | DELETE /oapi/v1/namespaces/{namespace}/templates/{name} | |
| OapiApi | delete_net_namespace | DELETE /oapi/v1/netnamespaces/{name} | |
| OapiApi | delete_o_auth_access_token | DELETE /oapi/v1/oauthaccesstokens/{name} | |
| OapiApi | delete_o_auth_authorize_token | DELETE /oapi/v1/oauthauthorizetokens/{name} | |
| OapiApi | delete_o_auth_client | DELETE /oapi/v1/oauthclients/{name} | |
| OapiApi | delete_o_auth_client_authorization | DELETE /oapi/v1/oauthclientauthorizations/{name} | |
| OapiApi | delete_project | DELETE /oapi/v1/projects/{name} | |
| OapiApi | delete_user | DELETE /oapi/v1/users/{name} | |
| OapiApi | delete_user_identity_mapping | DELETE /oapi/v1/useridentitymappings/{name} | |
| OapiApi | get_api_resources | GET /oapi/v1/ | |
| OapiApi | get_legacy_api_versions | GET /oapi/ | |
| OapiApi | list_applied_cluster_resource_quota_for_all_namespaces | GET /oapi/v1/appliedclusterresourcequotas | |
| OapiApi | list_build_config_for_all_namespaces | GET /oapi/v1/buildconfigs | |
| OapiApi | list_build_for_all_namespaces | GET /oapi/v1/builds | |
| OapiApi | list_cluster_network | GET /oapi/v1/clusternetworks | |
| OapiApi | list_cluster_resource_quota | GET /oapi/v1/clusterresourcequotas | |
| OapiApi | list_cluster_role | GET /oapi/v1/clusterroles | |
| OapiApi | list_cluster_role_binding | GET /oapi/v1/clusterrolebindings | |
| OapiApi | list_deployment_config_for_all_namespaces | GET /oapi/v1/deploymentconfigs | |
| OapiApi | list_egress_network_policy_for_all_namespaces | GET /oapi/v1/egressnetworkpolicies | |
| OapiApi | list_group | GET /oapi/v1/groups | |
| OapiApi | list_host_subnet | GET /oapi/v1/hostsubnets | |
| OapiApi | list_identity | GET /oapi/v1/identities | |
| OapiApi | list_image | GET /oapi/v1/images | |
| OapiApi | list_image_stream_for_all_namespaces | GET /oapi/v1/imagestreams | |
| OapiApi | list_image_stream_tag_for_all_namespaces | GET /oapi/v1/imagestreamtags | |
| OapiApi | list_namespaced_applied_cluster_resource_quota | GET /oapi/v1/namespaces/{namespace}/appliedclusterresourcequotas | |
| OapiApi | list_namespaced_build | GET /oapi/v1/namespaces/{namespace}/builds | |
| OapiApi | list_namespaced_build_config | GET /oapi/v1/namespaces/{namespace}/buildconfigs | |
| OapiApi | list_namespaced_deployment_config | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs | |
| OapiApi | list_namespaced_egress_network_policy | GET /oapi/v1/namespaces/{namespace}/egressnetworkpolicies | |
| OapiApi | list_namespaced_image_stream | GET /oapi/v1/namespaces/{namespace}/imagestreams | |
| OapiApi | list_namespaced_image_stream_tag | GET /oapi/v1/namespaces/{namespace}/imagestreamtags | |
| OapiApi | list_namespaced_role | GET /oapi/v1/namespaces/{namespace}/roles | |
| OapiApi | list_namespaced_role_binding | GET /oapi/v1/namespaces/{namespace}/rolebindings | |
| OapiApi | list_namespaced_role_binding_restriction | GET /oapi/v1/namespaces/{namespace}/rolebindingrestrictions | |
| OapiApi | list_namespaced_route | GET /oapi/v1/namespaces/{namespace}/routes | |
| OapiApi | list_namespaced_template | GET /oapi/v1/namespaces/{namespace}/templates | |
| OapiApi | list_net_namespace | GET /oapi/v1/netnamespaces | |
| OapiApi | list_o_auth_access_token | GET /oapi/v1/oauthaccesstokens | |
| OapiApi | list_o_auth_authorize_token | GET /oapi/v1/oauthauthorizetokens | |
| OapiApi | list_o_auth_client | GET /oapi/v1/oauthclients | |
| OapiApi | list_o_auth_client_authorization | GET /oapi/v1/oauthclientauthorizations | |
| OapiApi | list_project | GET /oapi/v1/projects | |
| OapiApi | list_project_request | GET /oapi/v1/projectrequests | |
| OapiApi | list_role_binding_for_all_namespaces | GET /oapi/v1/rolebindings | |
| OapiApi | list_role_binding_restriction_for_all_namespaces | GET /oapi/v1/rolebindingrestrictions | |
| OapiApi | list_role_for_all_namespaces | GET /oapi/v1/roles | |
| OapiApi | list_route_for_all_namespaces | GET /oapi/v1/routes | |
| OapiApi | list_template_for_all_namespaces | GET /oapi/v1/templates | |
| OapiApi | list_user | GET /oapi/v1/users | |
| OapiApi | patch_cluster_network | PATCH /oapi/v1/clusternetworks/{name} | |
| OapiApi | patch_cluster_resource_quota | PATCH /oapi/v1/clusterresourcequotas/{name} | |
| OapiApi | patch_cluster_resource_quota_status | PATCH /oapi/v1/clusterresourcequotas/{name}/status | |
| OapiApi | patch_cluster_role | PATCH /oapi/v1/clusterroles/{name} | |
| OapiApi | patch_cluster_role_binding | PATCH /oapi/v1/clusterrolebindings/{name} | |
| OapiApi | patch_group | PATCH /oapi/v1/groups/{name} | |
| OapiApi | patch_host_subnet | PATCH /oapi/v1/hostsubnets/{name} | |
| OapiApi | patch_identity | PATCH /oapi/v1/identities/{name} | |
| OapiApi | patch_image | PATCH /oapi/v1/images/{name} | |
| OapiApi | patch_namespaced_build | PATCH /oapi/v1/namespaces/{namespace}/builds/{name} | |
| OapiApi | patch_namespaced_build_config | PATCH /oapi/v1/namespaces/{namespace}/buildconfigs/{name} | |
| OapiApi | patch_namespaced_deployment_config | PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| OapiApi | patch_namespaced_deployment_config_scale | PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| OapiApi | patch_namespaced_deployment_config_status | PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| OapiApi | patch_namespaced_egress_network_policy | PATCH /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| OapiApi | patch_namespaced_image_stream | PATCH /oapi/v1/namespaces/{namespace}/imagestreams/{name} | |
| OapiApi | patch_namespaced_image_stream_status | PATCH /oapi/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| OapiApi | patch_namespaced_image_stream_tag | PATCH /oapi/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| OapiApi | patch_namespaced_role | PATCH /oapi/v1/namespaces/{namespace}/roles/{name} | |
| OapiApi | patch_namespaced_role_binding | PATCH /oapi/v1/namespaces/{namespace}/rolebindings/{name} | |
| OapiApi | patch_namespaced_role_binding_restriction | PATCH /oapi/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| OapiApi | patch_namespaced_route | PATCH /oapi/v1/namespaces/{namespace}/routes/{name} | |
| OapiApi | patch_namespaced_route_status | PATCH /oapi/v1/namespaces/{namespace}/routes/{name}/status | |
| OapiApi | patch_namespaced_template | PATCH /oapi/v1/namespaces/{namespace}/templates/{name} | |
| OapiApi | patch_net_namespace | PATCH /oapi/v1/netnamespaces/{name} | |
| OapiApi | patch_o_auth_access_token | PATCH /oapi/v1/oauthaccesstokens/{name} | |
| OapiApi | patch_o_auth_authorize_token | PATCH /oapi/v1/oauthauthorizetokens/{name} | |
| OapiApi | patch_o_auth_client | PATCH /oapi/v1/oauthclients/{name} | |
| OapiApi | patch_o_auth_client_authorization | PATCH /oapi/v1/oauthclientauthorizations/{name} | |
| OapiApi | patch_project | PATCH /oapi/v1/projects/{name} | |
| OapiApi | patch_user | PATCH /oapi/v1/users/{name} | |
| OapiApi | patch_user_identity_mapping | PATCH /oapi/v1/useridentitymappings/{name} | |
| OapiApi | read_cluster_network | GET /oapi/v1/clusternetworks/{name} | |
| OapiApi | read_cluster_resource_quota | GET /oapi/v1/clusterresourcequotas/{name} | |
| OapiApi | read_cluster_resource_quota_status | GET /oapi/v1/clusterresourcequotas/{name}/status | |
| OapiApi | read_cluster_role | GET /oapi/v1/clusterroles/{name} | |
| OapiApi | read_cluster_role_binding | GET /oapi/v1/clusterrolebindings/{name} | |
| OapiApi | read_group | GET /oapi/v1/groups/{name} | |
| OapiApi | read_host_subnet | GET /oapi/v1/hostsubnets/{name} | |
| OapiApi | read_identity | GET /oapi/v1/identities/{name} | |
| OapiApi | read_image | GET /oapi/v1/images/{name} | |
| OapiApi | read_namespaced_applied_cluster_resource_quota | GET /oapi/v1/namespaces/{namespace}/appliedclusterresourcequotas/{name} | |
| OapiApi | read_namespaced_build | GET /oapi/v1/namespaces/{namespace}/builds/{name} | |
| OapiApi | read_namespaced_build_config | GET /oapi/v1/namespaces/{namespace}/buildconfigs/{name} | |
| OapiApi | read_namespaced_build_log | GET /oapi/v1/namespaces/{namespace}/builds/{name}/log | |
| OapiApi | read_namespaced_deployment_config | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| OapiApi | read_namespaced_deployment_config_log | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/log | |
| OapiApi | read_namespaced_deployment_config_scale | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| OapiApi | read_namespaced_deployment_config_status | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| OapiApi | read_namespaced_egress_network_policy | GET /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| OapiApi | read_namespaced_image_stream | GET /oapi/v1/namespaces/{namespace}/imagestreams/{name} | |
| OapiApi | read_namespaced_image_stream_image | GET /oapi/v1/namespaces/{namespace}/imagestreamimages/{name} | |
| OapiApi | read_namespaced_image_stream_secrets | GET /oapi/v1/namespaces/{namespace}/imagestreams/{name}/secrets | |
| OapiApi | read_namespaced_image_stream_status | GET /oapi/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| OapiApi | read_namespaced_image_stream_tag | GET /oapi/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| OapiApi | read_namespaced_role | GET /oapi/v1/namespaces/{namespace}/roles/{name} | |
| OapiApi | read_namespaced_role_binding | GET /oapi/v1/namespaces/{namespace}/rolebindings/{name} | |
| OapiApi | read_namespaced_role_binding_restriction | GET /oapi/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| OapiApi | read_namespaced_route | GET /oapi/v1/namespaces/{namespace}/routes/{name} | |
| OapiApi | read_namespaced_route_status | GET /oapi/v1/namespaces/{namespace}/routes/{name}/status | |
| OapiApi | read_namespaced_template | GET /oapi/v1/namespaces/{namespace}/templates/{name} | |
| OapiApi | read_net_namespace | GET /oapi/v1/netnamespaces/{name} | |
| OapiApi | read_o_auth_access_token | GET /oapi/v1/oauthaccesstokens/{name} | |
| OapiApi | read_o_auth_authorize_token | GET /oapi/v1/oauthauthorizetokens/{name} | |
| OapiApi | read_o_auth_client | GET /oapi/v1/oauthclients/{name} | |
| OapiApi | read_o_auth_client_authorization | GET /oapi/v1/oauthclientauthorizations/{name} | |
| OapiApi | read_project | GET /oapi/v1/projects/{name} | |
| OapiApi | read_user | GET /oapi/v1/users/{name} | |
| OapiApi | read_user_identity_mapping | GET /oapi/v1/useridentitymappings/{name} | |
| OapiApi | replace_cluster_network | PUT /oapi/v1/clusternetworks/{name} | |
| OapiApi | replace_cluster_resource_quota | PUT /oapi/v1/clusterresourcequotas/{name} | |
| OapiApi | replace_cluster_resource_quota_status | PUT /oapi/v1/clusterresourcequotas/{name}/status | |
| OapiApi | replace_cluster_role | PUT /oapi/v1/clusterroles/{name} | |
| OapiApi | replace_cluster_role_binding | PUT /oapi/v1/clusterrolebindings/{name} | |
| OapiApi | replace_group | PUT /oapi/v1/groups/{name} | |
| OapiApi | replace_host_subnet | PUT /oapi/v1/hostsubnets/{name} | |
| OapiApi | replace_identity | PUT /oapi/v1/identities/{name} | |
| OapiApi | replace_image | PUT /oapi/v1/images/{name} | |
| OapiApi | replace_namespaced_build | PUT /oapi/v1/namespaces/{namespace}/builds/{name} | |
| OapiApi | replace_namespaced_build_config | PUT /oapi/v1/namespaces/{namespace}/buildconfigs/{name} | |
| OapiApi | replace_namespaced_build_details | PUT /oapi/v1/namespaces/{namespace}/builds/{name}/details | |
| OapiApi | replace_namespaced_deployment_config | PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| OapiApi | replace_namespaced_deployment_config_scale | PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| OapiApi | replace_namespaced_deployment_config_status | PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| OapiApi | replace_namespaced_egress_network_policy | PUT /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| OapiApi | replace_namespaced_image_stream | PUT /oapi/v1/namespaces/{namespace}/imagestreams/{name} | |
| OapiApi | replace_namespaced_image_stream_status | PUT /oapi/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| OapiApi | replace_namespaced_image_stream_tag | PUT /oapi/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| OapiApi | replace_namespaced_role | PUT /oapi/v1/namespaces/{namespace}/roles/{name} | |
| OapiApi | replace_namespaced_role_binding | PUT /oapi/v1/namespaces/{namespace}/rolebindings/{name} | |
| OapiApi | replace_namespaced_role_binding_restriction | PUT /oapi/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| OapiApi | replace_namespaced_route | PUT /oapi/v1/namespaces/{namespace}/routes/{name} | |
| OapiApi | replace_namespaced_route_status | PUT /oapi/v1/namespaces/{namespace}/routes/{name}/status | |
| OapiApi | replace_namespaced_template | PUT /oapi/v1/namespaces/{namespace}/templates/{name} | |
| OapiApi | replace_net_namespace | PUT /oapi/v1/netnamespaces/{name} | |
| OapiApi | replace_o_auth_access_token | PUT /oapi/v1/oauthaccesstokens/{name} | |
| OapiApi | replace_o_auth_authorize_token | PUT /oapi/v1/oauthauthorizetokens/{name} | |
| OapiApi | replace_o_auth_client | PUT /oapi/v1/oauthclients/{name} | |
| OapiApi | replace_o_auth_client_authorization | PUT /oapi/v1/oauthclientauthorizations/{name} | |
| OapiApi | replace_project | PUT /oapi/v1/projects/{name} | |
| OapiApi | replace_user | PUT /oapi/v1/users/{name} | |
| OapiApi | replace_user_identity_mapping | PUT /oapi/v1/useridentitymappings/{name} | |
| OauthOpenshiftIoApi | get_api_group | GET /apis/oauth.openshift.io/ | |
| OauthOpenshiftIoV1Api | create_o_auth_access_token | POST /apis/oauth.openshift.io/v1/oauthaccesstokens | |
| OauthOpenshiftIoV1Api | create_o_auth_authorize_token | POST /apis/oauth.openshift.io/v1/oauthauthorizetokens | |
| OauthOpenshiftIoV1Api | create_o_auth_client | POST /apis/oauth.openshift.io/v1/oauthclients | |
| OauthOpenshiftIoV1Api | create_o_auth_client_authorization | POST /apis/oauth.openshift.io/v1/oauthclientauthorizations | |
| OauthOpenshiftIoV1Api | delete_collection_o_auth_access_token | DELETE /apis/oauth.openshift.io/v1/oauthaccesstokens | |
| OauthOpenshiftIoV1Api | delete_collection_o_auth_authorize_token | DELETE /apis/oauth.openshift.io/v1/oauthauthorizetokens | |
| OauthOpenshiftIoV1Api | delete_collection_o_auth_client | DELETE /apis/oauth.openshift.io/v1/oauthclients | |
| OauthOpenshiftIoV1Api | delete_collection_o_auth_client_authorization | DELETE /apis/oauth.openshift.io/v1/oauthclientauthorizations | |
| OauthOpenshiftIoV1Api | delete_o_auth_access_token | DELETE /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | delete_o_auth_authorize_token | DELETE /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | delete_o_auth_client | DELETE /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | delete_o_auth_client_authorization | DELETE /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| OauthOpenshiftIoV1Api | get_api_resources | GET /apis/oauth.openshift.io/v1/ | |
| OauthOpenshiftIoV1Api | list_o_auth_access_token | GET /apis/oauth.openshift.io/v1/oauthaccesstokens | |
| OauthOpenshiftIoV1Api | list_o_auth_authorize_token | GET /apis/oauth.openshift.io/v1/oauthauthorizetokens | |
| OauthOpenshiftIoV1Api | list_o_auth_client | GET /apis/oauth.openshift.io/v1/oauthclients | |
| OauthOpenshiftIoV1Api | list_o_auth_client_authorization | GET /apis/oauth.openshift.io/v1/oauthclientauthorizations | |
| OauthOpenshiftIoV1Api | patch_o_auth_access_token | PATCH /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | patch_o_auth_authorize_token | PATCH /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | patch_o_auth_client | PATCH /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | patch_o_auth_client_authorization | PATCH /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| OauthOpenshiftIoV1Api | read_o_auth_access_token | GET /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | read_o_auth_authorize_token | GET /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | read_o_auth_client | GET /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | read_o_auth_client_authorization | GET /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| OauthOpenshiftIoV1Api | replace_o_auth_access_token | PUT /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | replace_o_auth_authorize_token | PUT /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | replace_o_auth_client | PUT /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | replace_o_auth_client_authorization | PUT /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| PolicyApi | get_api_group | GET /apis/policy/ | |
| PolicyV1beta1Api | create_namespaced_pod_disruption_budget | POST /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets | |
| PolicyV1beta1Api | create_pod_disruption_budget_for_all_namespaces | POST /apis/policy/v1beta1/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 | |
| ProjectOpenshiftIoApi | get_api_group | GET /apis/project.openshift.io/ | |
| ProjectOpenshiftIoV1Api | create_project | POST /apis/project.openshift.io/v1/projects | |
| ProjectOpenshiftIoV1Api | create_project_request | POST /apis/project.openshift.io/v1/projectrequests | |
| ProjectOpenshiftIoV1Api | delete_project | DELETE /apis/project.openshift.io/v1/projects/{name} | |
| ProjectOpenshiftIoV1Api | get_api_resources | GET /apis/project.openshift.io/v1/ | |
| ProjectOpenshiftIoV1Api | list_project | GET /apis/project.openshift.io/v1/projects | |
| ProjectOpenshiftIoV1Api | list_project_request | GET /apis/project.openshift.io/v1/projectrequests | |
| ProjectOpenshiftIoV1Api | patch_project | PATCH /apis/project.openshift.io/v1/projects/{name} | |
| ProjectOpenshiftIoV1Api | read_project | GET /apis/project.openshift.io/v1/projects/{name} | |
| ProjectOpenshiftIoV1Api | replace_project | PUT /apis/project.openshift.io/v1/projects/{name} | |
| QuotaOpenshiftIoApi | get_api_group | GET /apis/quota.openshift.io/ | |
| QuotaOpenshiftIoV1Api | create_cluster_resource_quota | POST /apis/quota.openshift.io/v1/clusterresourcequotas | |
| QuotaOpenshiftIoV1Api | delete_cluster_resource_quota | DELETE /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | delete_collection_cluster_resource_quota | DELETE /apis/quota.openshift.io/v1/clusterresourcequotas | |
| QuotaOpenshiftIoV1Api | get_api_resources | GET /apis/quota.openshift.io/v1/ | |
| QuotaOpenshiftIoV1Api | list_applied_cluster_resource_quota_for_all_namespaces | GET /apis/quota.openshift.io/v1/appliedclusterresourcequotas | |
| QuotaOpenshiftIoV1Api | list_cluster_resource_quota | GET /apis/quota.openshift.io/v1/clusterresourcequotas | |
| QuotaOpenshiftIoV1Api | list_namespaced_applied_cluster_resource_quota | GET /apis/quota.openshift.io/v1/namespaces/{namespace}/appliedclusterresourcequotas | |
| QuotaOpenshiftIoV1Api | patch_cluster_resource_quota | PATCH /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | patch_cluster_resource_quota_status | PATCH /apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status | |
| QuotaOpenshiftIoV1Api | read_cluster_resource_quota | GET /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | read_cluster_resource_quota_status | GET /apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status | |
| QuotaOpenshiftIoV1Api | read_namespaced_applied_cluster_resource_quota | GET /apis/quota.openshift.io/v1/namespaces/{namespace}/appliedclusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | replace_cluster_resource_quota | PUT /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | replace_cluster_resource_quota_status | PUT /apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status | |
| 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 | create_role_binding_for_all_namespaces | POST /apis/rbac.authorization.k8s.io/v1/rolebindings | |
| RbacAuthorizationV1Api | create_role_for_all_namespaces | POST /apis/rbac.authorization.k8s.io/v1/roles | |
| 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} | |
| 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 | create_role_binding_for_all_namespaces | POST /apis/rbac.authorization.k8s.io/v1beta1/rolebindings | |
| RbacAuthorizationV1beta1Api | create_role_for_all_namespaces | POST /apis/rbac.authorization.k8s.io/v1beta1/roles | |
| 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} | |
| RouteOpenshiftIoApi | get_api_group | GET /apis/route.openshift.io/ | |
| RouteOpenshiftIoV1Api | create_namespaced_route | POST /apis/route.openshift.io/v1/namespaces/{namespace}/routes | |
| RouteOpenshiftIoV1Api | create_route_for_all_namespaces | POST /apis/route.openshift.io/v1/routes | |
| RouteOpenshiftIoV1Api | delete_collection_namespaced_route | DELETE /apis/route.openshift.io/v1/namespaces/{namespace}/routes | |
| RouteOpenshiftIoV1Api | delete_namespaced_route | DELETE /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | get_api_resources | GET /apis/route.openshift.io/v1/ | |
| RouteOpenshiftIoV1Api | list_namespaced_route | GET /apis/route.openshift.io/v1/namespaces/{namespace}/routes | |
| RouteOpenshiftIoV1Api | list_route_for_all_namespaces | GET /apis/route.openshift.io/v1/routes | |
| RouteOpenshiftIoV1Api | patch_namespaced_route | PATCH /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | patch_namespaced_route_status | PATCH /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name}/status | |
| RouteOpenshiftIoV1Api | read_namespaced_route | GET /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | read_namespaced_route_status | GET /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name}/status | |
| RouteOpenshiftIoV1Api | replace_namespaced_route | PUT /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | replace_namespaced_route_status | PUT /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name}/status | |
| SecurityOpenshiftIoApi | get_api_group | GET /apis/security.openshift.io/ | |
| SecurityOpenshiftIoV1Api | create_namespaced_pod_security_policy_review | POST /apis/security.openshift.io/v1/namespaces/{namespace}/podsecuritypolicyreviews | |
| SecurityOpenshiftIoV1Api | create_namespaced_pod_security_policy_self_subject_review | POST /apis/security.openshift.io/v1/namespaces/{namespace}/podsecuritypolicyselfsubjectreviews | |
| SecurityOpenshiftIoV1Api | create_namespaced_pod_security_policy_subject_review | POST /apis/security.openshift.io/v1/namespaces/{namespace}/podsecuritypolicysubjectreviews | |
| SecurityOpenshiftIoV1Api | create_pod_security_policy_review_for_all_namespaces | POST /apis/security.openshift.io/v1/podsecuritypolicyreviews | |
| SecurityOpenshiftIoV1Api | create_pod_security_policy_self_subject_review_for_all_namespaces | POST /apis/security.openshift.io/v1/podsecuritypolicyselfsubjectreviews | |
| SecurityOpenshiftIoV1Api | create_pod_security_policy_subject_review_for_all_namespaces | POST /apis/security.openshift.io/v1/podsecuritypolicysubjectreviews | |
| SecurityOpenshiftIoV1Api | create_security_context_constraints | POST /apis/security.openshift.io/v1/securitycontextconstraints | |
| SecurityOpenshiftIoV1Api | delete_collection_security_context_constraints | DELETE /apis/security.openshift.io/v1/securitycontextconstraints | |
| SecurityOpenshiftIoV1Api | delete_security_context_constraints | DELETE /apis/security.openshift.io/v1/securitycontextconstraints/{name} | |
| SecurityOpenshiftIoV1Api | get_api_resources | GET /apis/security.openshift.io/v1/ | |
| SecurityOpenshiftIoV1Api | list_security_context_constraints | GET /apis/security.openshift.io/v1/securitycontextconstraints | |
| SecurityOpenshiftIoV1Api | patch_security_context_constraints | PATCH /apis/security.openshift.io/v1/securitycontextconstraints/{name} | |
| SecurityOpenshiftIoV1Api | read_security_context_constraints | GET /apis/security.openshift.io/v1/securitycontextconstraints/{name} | |
| SecurityOpenshiftIoV1Api | replace_security_context_constraints | PUT /apis/security.openshift.io/v1/securitycontextconstraints/{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} | |
| TemplateOpenshiftIoApi | get_api_group | GET /apis/template.openshift.io/ | |
| TemplateOpenshiftIoV1Api | create_broker_template_instance | POST /apis/template.openshift.io/v1/brokertemplateinstances | |
| TemplateOpenshiftIoV1Api | create_namespaced_template | POST /apis/template.openshift.io/v1/namespaces/{namespace}/templates | |
| TemplateOpenshiftIoV1Api | create_namespaced_template_instance | POST /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances | |
| TemplateOpenshiftIoV1Api | create_template_for_all_namespaces | POST /apis/template.openshift.io/v1/templates | |
| TemplateOpenshiftIoV1Api | create_template_instance_for_all_namespaces | POST /apis/template.openshift.io/v1/templateinstances | |
| TemplateOpenshiftIoV1Api | delete_broker_template_instance | DELETE /apis/template.openshift.io/v1/brokertemplateinstances/{name} | |
| TemplateOpenshiftIoV1Api | delete_collection_broker_template_instance | DELETE /apis/template.openshift.io/v1/brokertemplateinstances | |
| TemplateOpenshiftIoV1Api | delete_collection_namespaced_template | DELETE /apis/template.openshift.io/v1/namespaces/{namespace}/templates | |
| TemplateOpenshiftIoV1Api | delete_collection_namespaced_template_instance | DELETE /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances | |
| TemplateOpenshiftIoV1Api | delete_namespaced_template | DELETE /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| TemplateOpenshiftIoV1Api | delete_namespaced_template_instance | DELETE /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances/{name} | |
| TemplateOpenshiftIoV1Api | get_api_resources | GET /apis/template.openshift.io/v1/ | |
| TemplateOpenshiftIoV1Api | list_broker_template_instance | GET /apis/template.openshift.io/v1/brokertemplateinstances | |
| TemplateOpenshiftIoV1Api | list_namespaced_template | GET /apis/template.openshift.io/v1/namespaces/{namespace}/templates | |
| TemplateOpenshiftIoV1Api | list_namespaced_template_instance | GET /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances | |
| TemplateOpenshiftIoV1Api | list_template_for_all_namespaces | GET /apis/template.openshift.io/v1/templates | |
| TemplateOpenshiftIoV1Api | list_template_instance_for_all_namespaces | GET /apis/template.openshift.io/v1/templateinstances | |
| TemplateOpenshiftIoV1Api | patch_broker_template_instance | PATCH /apis/template.openshift.io/v1/brokertemplateinstances/{name} | |
| TemplateOpenshiftIoV1Api | patch_namespaced_template | PATCH /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| TemplateOpenshiftIoV1Api | patch_namespaced_template_instance | PATCH /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances/{name} | |
| TemplateOpenshiftIoV1Api | patch_namespaced_template_instance_status | PATCH /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances/{name}/status | |
| TemplateOpenshiftIoV1Api | read_broker_template_instance | GET /apis/template.openshift.io/v1/brokertemplateinstances/{name} | |
| TemplateOpenshiftIoV1Api | read_namespaced_template | GET /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| TemplateOpenshiftIoV1Api | read_namespaced_template_instance | GET /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances/{name} | |
| TemplateOpenshiftIoV1Api | read_namespaced_template_instance_status | GET /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances/{name}/status | |
| TemplateOpenshiftIoV1Api | replace_broker_template_instance | PUT /apis/template.openshift.io/v1/brokertemplateinstances/{name} | |
| TemplateOpenshiftIoV1Api | replace_namespaced_template | PUT /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| TemplateOpenshiftIoV1Api | replace_namespaced_template_instance | PUT /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances/{name} | |
| TemplateOpenshiftIoV1Api | replace_namespaced_template_instance_status | PUT /apis/template.openshift.io/v1/namespaces/{namespace}/templateinstances/{name}/status | |
| TemplateOpenshiftIoApi | create_namespaced_processed_template_v1 | POST /apis/template.openshift.io/v1/namespaces/{namespace}/processedtemplates | |
| TemplateOpenshiftIoApi | create_processed_template_for_all_namespaces | POST /apis/template.openshift.io/v1/processedtemplates | |
| UserOpenshiftIoApi | get_api_group | GET /apis/user.openshift.io/ | |
| UserOpenshiftIoV1Api | create_group | POST /apis/user.openshift.io/v1/groups | |
| UserOpenshiftIoV1Api | create_identity | POST /apis/user.openshift.io/v1/identities | |
| UserOpenshiftIoV1Api | create_user | POST /apis/user.openshift.io/v1/users | |
| UserOpenshiftIoV1Api | create_user_identity_mapping | POST /apis/user.openshift.io/v1/useridentitymappings | |
| UserOpenshiftIoV1Api | delete_collection_group | DELETE /apis/user.openshift.io/v1/groups | |
| UserOpenshiftIoV1Api | delete_collection_identity | DELETE /apis/user.openshift.io/v1/identities | |
| UserOpenshiftIoV1Api | delete_collection_user | DELETE /apis/user.openshift.io/v1/users | |
| UserOpenshiftIoV1Api | delete_group | DELETE /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | delete_identity | DELETE /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | delete_user | DELETE /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | delete_user_identity_mapping | DELETE /apis/user.openshift.io/v1/useridentitymappings/{name} | |
| UserOpenshiftIoV1Api | get_api_resources | GET /apis/user.openshift.io/v1/ | |
| UserOpenshiftIoV1Api | list_group | GET /apis/user.openshift.io/v1/groups | |
| UserOpenshiftIoV1Api | list_identity | GET /apis/user.openshift.io/v1/identities | |
| UserOpenshiftIoV1Api | list_user | GET /apis/user.openshift.io/v1/users | |
| UserOpenshiftIoV1Api | patch_group | PATCH /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | patch_identity | PATCH /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | patch_user | PATCH /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | patch_user_identity_mapping | PATCH /apis/user.openshift.io/v1/useridentitymappings/{name} | |
| UserOpenshiftIoV1Api | read_group | GET /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | read_identity | GET /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | read_user | GET /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | read_user_identity_mapping | GET /apis/user.openshift.io/v1/useridentitymappings/{name} | |
| UserOpenshiftIoV1Api | replace_group | PUT /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | replace_identity | PUT /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | replace_user | PUT /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | replace_user_identity_mapping | PUT /apis/user.openshift.io/v1/useridentitymappings/{name} |
- AdmissionregistrationV1beta1ServiceReference
- ApiregistrationV1beta1ServiceReference
- AppsV1beta1Deployment
- AppsV1beta1DeploymentCondition
- AppsV1beta1DeploymentList
- AppsV1beta1DeploymentRollback
- AppsV1beta1DeploymentSpec
- AppsV1beta1DeploymentStatus
- AppsV1beta1DeploymentStrategy
- AppsV1beta1RollbackConfig
- AppsV1beta1RollingUpdateDeployment
- AppsV1beta1Scale
- AppsV1beta1ScaleSpec
- AppsV1beta1ScaleStatus
- ExtensionsV1beta1Deployment
- ExtensionsV1beta1DeploymentCondition
- ExtensionsV1beta1DeploymentList
- ExtensionsV1beta1DeploymentRollback
- ExtensionsV1beta1DeploymentSpec
- ExtensionsV1beta1DeploymentStatus
- ExtensionsV1beta1DeploymentStrategy
- ExtensionsV1beta1RollbackConfig
- ExtensionsV1beta1RollingUpdateDeployment
- ExtensionsV1beta1Scale
- ExtensionsV1beta1ScaleSpec
- ExtensionsV1beta1ScaleStatus
- RuntimeRawExtension
- V1APIGroup
- V1APIGroupList
- V1APIResource
- V1APIResourceList
- V1APIVersions
- V1AWSElasticBlockStoreVolumeSource
- V1Affinity
- V1AggregationRule
- V1AllowedFlexVolume
- V1AppliedClusterResourceQuota
- V1AppliedClusterResourceQuotaList
- V1AttachedVolume
- V1AzureDiskVolumeSource
- V1AzureFilePersistentVolumeSource
- V1AzureFileVolumeSource
- V1BinaryBuildSource
- V1Binding
- V1BitbucketWebHookCause
- V1BrokerTemplateInstance
- V1BrokerTemplateInstanceList
- V1BrokerTemplateInstanceSpec
- V1Build
- V1BuildConfig
- V1BuildConfigList
- V1BuildConfigSpec
- V1BuildConfigStatus
- V1BuildList
- V1BuildLog
- V1BuildOutput
- V1BuildPostCommitSpec
- V1BuildRequest
- V1BuildSource
- V1BuildSpec
- V1BuildStatus
- V1BuildStatusOutput
- V1BuildStatusOutputTo
- V1BuildStrategy
- V1BuildTriggerCause
- V1BuildTriggerPolicy
- V1CSIPersistentVolumeSource
- V1Capabilities
- V1CephFSPersistentVolumeSource
- V1CephFSVolumeSource
- V1CinderVolumeSource
- V1ClientIPConfig
- V1ClusterNetwork
- V1ClusterNetworkEntry
- V1ClusterNetworkList
- V1ClusterResourceQuota
- V1ClusterResourceQuotaList
- V1ClusterResourceQuotaSelector
- V1ClusterResourceQuotaSpec
- V1ClusterResourceQuotaStatus
- V1ClusterRole
- V1ClusterRoleBinding
- V1ClusterRoleBindingList
- V1ClusterRoleList
- V1ClusterRoleScopeRestriction
- V1ComponentCondition
- V1ComponentStatus
- V1ComponentStatusList
- V1ConfigMap
- V1ConfigMapEnvSource
- V1ConfigMapKeySelector
- V1ConfigMapList
- V1ConfigMapProjection
- V1ConfigMapVolumeSource
- V1Container
- V1ContainerImage
- V1ContainerPort
- V1ContainerState
- V1ContainerStateRunning
- V1ContainerStateTerminated
- V1ContainerStateWaiting
- V1ContainerStatus
- V1ControllerRevision
- V1ControllerRevisionList
- V1CrossVersionObjectReference
- V1CustomBuildStrategy
- V1CustomDeploymentStrategyParams
- V1DaemonEndpoint
- V1DaemonSet
- V1DaemonSetCondition
- V1DaemonSetList
- V1DaemonSetSpec
- V1DaemonSetStatus
- V1DaemonSetUpdateStrategy
- V1DeleteOptions
- V1Deployment
- V1DeploymentCause
- V1DeploymentCauseImageTrigger
- V1DeploymentCondition
- V1DeploymentConfig
- V1DeploymentConfigList
- V1DeploymentConfigRollback
- V1DeploymentConfigRollbackSpec
- V1DeploymentConfigSpec
- V1DeploymentConfigStatus
- V1DeploymentDetails
- V1DeploymentList
- V1DeploymentLog
- V1DeploymentRequest
- V1DeploymentSpec
- V1DeploymentStatus
- V1DeploymentStrategy
- V1DeploymentTriggerImageChangeParams
- V1DeploymentTriggerPolicy
- V1DockerBuildStrategy
- V1DockerStrategyOptions
- V1DownwardAPIProjection
- V1DownwardAPIVolumeFile
- V1DownwardAPIVolumeSource
- V1EgressNetworkPolicy
- V1EgressNetworkPolicyList
- V1EgressNetworkPolicyPeer
- V1EgressNetworkPolicyRule
- V1EgressNetworkPolicySpec
- V1EmptyDirVolumeSource
- V1EndpointAddress
- V1EndpointPort
- V1EndpointSubset
- V1Endpoints
- V1EndpointsList
- V1EnvFromSource
- V1EnvVar
- V1EnvVarSource
- V1Event
- V1EventList
- V1EventSeries
- V1EventSource
- V1ExecAction
- V1ExecNewPodHook
- V1FCVolumeSource
- V1FSGroupStrategyOptions
- V1FlexVolumeSource
- V1FlockerVolumeSource
- V1GCEPersistentDiskVolumeSource
- V1GenericWebHookCause
- V1GitBuildSource
- V1GitHubWebHookCause
- V1GitLabWebHookCause
- V1GitRepoVolumeSource
- V1GitSourceRevision
- V1GlusterfsVolumeSource
- V1Group
- V1GroupList
- V1GroupRestriction
- V1GroupVersionForDiscovery
- V1HTTPGetAction
- V1HTTPHeader
- V1Handler
- V1HorizontalPodAutoscaler
- V1HorizontalPodAutoscalerList
- V1HorizontalPodAutoscalerSpec
- V1HorizontalPodAutoscalerStatus
- V1HostAlias
- V1HostPathVolumeSource
- V1HostSubnet
- V1HostSubnetList
- V1IDRange
- V1IPBlock
- V1ISCSIPersistentVolumeSource
- V1ISCSIVolumeSource
- V1Identity
- V1IdentityList
- V1Image
- V1ImageChangeCause
- V1ImageChangeTrigger
- V1ImageImportSpec
- V1ImageImportStatus
- V1ImageLabel
- V1ImageLayer
- V1ImageList
- V1ImageLookupPolicy
- V1ImageSignature
- V1ImageSource
- V1ImageSourcePath
- V1ImageStream
- V1ImageStreamImage
- V1ImageStreamImport
- V1ImageStreamImportSpec
- V1ImageStreamImportStatus
- V1ImageStreamList
- V1ImageStreamMapping
- V1ImageStreamSpec
- V1ImageStreamStatus
- V1ImageStreamTag
- V1ImageStreamTagList
- V1Initializer
- V1Initializers
- V1JenkinsPipelineBuildStrategy
- V1Job
- V1JobCondition
- V1JobList
- V1JobSpec
- V1JobStatus
- V1KeyToPath
- V1LabelSelector
- V1LabelSelectorRequirement
- V1Lifecycle
- V1LifecycleHook
- V1LimitRange
- V1LimitRangeItem
- V1LimitRangeList
- V1LimitRangeSpec
- V1ListMeta
- V1LoadBalancerIngress
- V1LoadBalancerStatus
- V1LocalObjectReference
- V1LocalResourceAccessReview
- V1LocalSubjectAccessReview
- V1LocalVolumeSource
- V1NFSVolumeSource
- V1NamedTagEventList
- V1Namespace
- V1NamespaceList
- V1NamespaceSpec
- V1NamespaceStatus
- V1NetNamespace
- V1NetNamespaceList
- V1NetworkPolicy
- V1NetworkPolicyEgressRule
- V1NetworkPolicyIngressRule
- V1NetworkPolicyList
- V1NetworkPolicyPeer
- V1NetworkPolicyPort
- V1NetworkPolicySpec
- V1Node
- V1NodeAddress
- V1NodeAffinity
- V1NodeCondition
- V1NodeConfigSource
- V1NodeDaemonEndpoints
- V1NodeList
- V1NodeSelector
- V1NodeSelectorRequirement
- V1NodeSelectorTerm
- V1NodeSpec
- V1NodeStatus
- V1NodeSystemInfo
- V1NonResourceAttributes
- V1NonResourceRule
- V1OAuthAccessToken
- V1OAuthAccessTokenList
- V1OAuthAuthorizeToken
- V1OAuthAuthorizeTokenList
- V1OAuthClient
- V1OAuthClientAuthorization
- V1OAuthClientAuthorizationList
- V1OAuthClientList
- V1ObjectFieldSelector
- V1ObjectMeta
- V1ObjectReference
- V1OwnerReference
- V1Parameter
- V1PersistentVolume
- V1PersistentVolumeClaim
- V1PersistentVolumeClaimCondition
- V1PersistentVolumeClaimList
- V1PersistentVolumeClaimSpec
- V1PersistentVolumeClaimStatus
- V1PersistentVolumeClaimVolumeSource
- V1PersistentVolumeList
- V1PersistentVolumeSpec
- V1PersistentVolumeStatus
- V1PhotonPersistentDiskVolumeSource
- V1Pod
- V1PodAffinity
- V1PodAffinityTerm
- V1PodAntiAffinity
- V1PodCondition
- V1PodDNSConfig
- V1PodDNSConfigOption
- V1PodList
- V1PodSecurityContext
- V1PodSecurityPolicyReview
- V1PodSecurityPolicyReviewSpec
- V1PodSecurityPolicyReviewStatus
- V1PodSecurityPolicySelfSubjectReview
- V1PodSecurityPolicySelfSubjectReviewSpec
- V1PodSecurityPolicySubjectReview
- V1PodSecurityPolicySubjectReviewSpec
- V1PodSecurityPolicySubjectReviewStatus
- V1PodSpec
- V1PodStatus
- V1PodTemplate
- V1PodTemplateList
- V1PodTemplateSpec
- V1PolicyRule
- V1PortworxVolumeSource
- V1Preconditions
- V1PreferredSchedulingTerm
- V1Probe
- V1Project
- V1ProjectList
- V1ProjectRequest
- V1ProjectSpec
- V1ProjectStatus
- V1ProjectedVolumeSource
- V1QuobyteVolumeSource
- V1RBDPersistentVolumeSource
- V1RBDVolumeSource
- V1RecreateDeploymentStrategyParams
- V1ReplicaSet
- V1ReplicaSetCondition
- V1ReplicaSetList
- V1ReplicaSetSpec
- V1ReplicaSetStatus
- V1ReplicationController
- V1ReplicationControllerCondition
- V1ReplicationControllerList
- V1ReplicationControllerSpec
- V1ReplicationControllerStatus
- V1RepositoryImportSpec
- V1RepositoryImportStatus
- V1ResourceAccessReview
- V1ResourceAttributes
- V1ResourceFieldSelector
- V1ResourceQuota
- V1ResourceQuotaList
- V1ResourceQuotaSpec
- V1ResourceQuotaStatus
- V1ResourceQuotaStatusByNamespace
- V1ResourceRequirements
- V1ResourceRule
- V1Role
- V1RoleBinding
- V1RoleBindingList
- V1RoleBindingRestriction
- V1RoleBindingRestrictionList
- V1RoleBindingRestrictionSpec
- V1RoleList
- V1RoleRef
- V1RollingDeploymentStrategyParams
- V1RollingUpdateDaemonSet
- V1RollingUpdateDeployment
- V1RollingUpdateStatefulSetStrategy
- V1Route
- V1RouteIngress
- V1RouteIngressCondition
- V1RouteList
- V1RoutePort
- V1RouteSpec
- V1RouteStatus
- V1RouteTargetReference
- V1RunAsUserStrategyOptions
- V1SELinuxContextStrategyOptions
- V1SELinuxOptions
- V1Scale
- V1ScaleIOPersistentVolumeSource
- V1ScaleIOVolumeSource
- V1ScaleSpec
- V1ScaleStatus
- V1ScopeRestriction
- V1Secret
- V1SecretBuildSource
- V1SecretEnvSource
- V1SecretKeySelector
- V1SecretList
- V1SecretLocalReference
- V1SecretProjection
- V1SecretReference
- V1SecretSpec
- V1SecretVolumeSource
- V1SecurityContext
- V1SecurityContextConstraints
- V1SecurityContextConstraintsList
- V1SelfSubjectAccessReview
- V1SelfSubjectAccessReviewSpec
- V1SelfSubjectRulesReview
- V1SelfSubjectRulesReviewSpec
- V1ServerAddressByClientCIDR
- V1Service
- V1ServiceAccount
- V1ServiceAccountList
- V1ServiceAccountPodSecurityPolicyReviewStatus
- V1ServiceAccountReference
- V1ServiceAccountRestriction
- V1ServiceList
- V1ServicePort
- V1ServiceSpec
- V1ServiceStatus
- V1SessionAffinityConfig
- V1SignatureCondition
- V1SignatureIssuer
- V1SignatureSubject
- V1SourceBuildStrategy
- V1SourceControlUser
- V1SourceRevision
- V1SourceStrategyOptions
- V1StageInfo
- V1StatefulSet
- V1StatefulSetCondition
- V1StatefulSetList
- V1StatefulSetSpec
- V1StatefulSetStatus
- V1StatefulSetUpdateStrategy
- V1Status
- V1StatusCause
- V1StatusDetails
- V1StepInfo
- V1StorageClass
- V1StorageClassList
- V1StorageOSPersistentVolumeSource
- V1StorageOSVolumeSource
- V1Subject
- V1SubjectAccessReview
- V1SubjectAccessReviewSpec
- V1SubjectAccessReviewStatus
- V1SubjectRulesReview
- V1SubjectRulesReviewSpec
- V1SubjectRulesReviewStatus
- V1SupplementalGroupsStrategyOptions
- V1TCPSocketAction
- V1TLSConfig
- V1TagEvent
- V1TagEventCondition
- V1TagImageHook
- V1TagImportPolicy
- V1TagReference
- V1TagReferencePolicy
- V1Taint
- V1Template
- V1TemplateInstance
- V1TemplateInstanceCondition
- V1TemplateInstanceList
- V1TemplateInstanceObject
- V1TemplateInstanceRequester
- V1TemplateInstanceSpec
- V1TemplateInstanceStatus
- V1TemplateList
- V1TokenReview
- V1TokenReviewSpec
- V1TokenReviewStatus
- V1Toleration
- V1User
- V1UserIdentityMapping
- V1UserInfo
- V1UserList
- V1UserRestriction
- V1Volume
- V1VolumeDevice
- V1VolumeMount
- V1VolumeProjection
- V1VsphereVirtualDiskVolumeSource
- V1WatchEvent
- V1WebHookTrigger
- V1WeightedPodAffinityTerm
- V1beta1APIService
- V1beta1APIServiceCondition
- V1beta1APIServiceList
- V1beta1APIServiceSpec
- V1beta1APIServiceStatus
- V1beta1AggregationRule
- V1beta1AllowedFlexVolume
- V1beta1AllowedHostPath
- V1beta1CertificateSigningRequest
- V1beta1CertificateSigningRequestCondition
- V1beta1CertificateSigningRequestList
- V1beta1CertificateSigningRequestSpec
- V1beta1CertificateSigningRequestStatus
- V1beta1ClusterRole
- V1beta1ClusterRoleBinding
- V1beta1ClusterRoleBindingList
- V1beta1ClusterRoleList
- V1beta1ControllerRevision
- V1beta1ControllerRevisionList
- V1beta1CronJob
- V1beta1CronJobList
- V1beta1CronJobSpec
- V1beta1CronJobStatus
- V1beta1DaemonSet
- V1beta1DaemonSetCondition
- V1beta1DaemonSetList
- V1beta1DaemonSetSpec
- V1beta1DaemonSetStatus
- V1beta1DaemonSetUpdateStrategy
- V1beta1Event
- V1beta1EventList
- V1beta1EventSeries
- V1beta1Eviction
- V1beta1FSGroupStrategyOptions
- V1beta1HTTPIngressPath
- V1beta1HTTPIngressRuleValue
- V1beta1HostPortRange
- V1beta1IDRange
- V1beta1IPBlock
- V1beta1Ingress
- V1beta1IngressBackend
- V1beta1IngressList
- V1beta1IngressRule
- V1beta1IngressSpec
- V1beta1IngressStatus
- V1beta1IngressTLS
- V1beta1JobTemplateSpec
- V1beta1LocalSubjectAccessReview
- V1beta1MutatingWebhookConfiguration
- V1beta1MutatingWebhookConfigurationList
- V1beta1NetworkPolicy
- V1beta1NetworkPolicyEgressRule
- V1beta1NetworkPolicyIngressRule
- V1beta1NetworkPolicyList
- V1beta1NetworkPolicyPeer
- V1beta1NetworkPolicyPort
- V1beta1NetworkPolicySpec
- V1beta1NonResourceAttributes
- V1beta1NonResourceRule
- V1beta1PodDisruptionBudget
- V1beta1PodDisruptionBudgetList
- V1beta1PodDisruptionBudgetSpec
- V1beta1PodDisruptionBudgetStatus
- V1beta1PodSecurityPolicy
- V1beta1PodSecurityPolicyList
- V1beta1PodSecurityPolicySpec
- V1beta1PolicyRule
- V1beta1ReplicaSet
- V1beta1ReplicaSetCondition
- V1beta1ReplicaSetList
- V1beta1ReplicaSetSpec
- V1beta1ReplicaSetStatus
- V1beta1ResourceAttributes
- V1beta1ResourceRule
- V1beta1Role
- V1beta1RoleBinding
- V1beta1RoleBindingList
- V1beta1RoleList
- V1beta1RoleRef
- V1beta1RollingUpdateDaemonSet
- V1beta1RollingUpdateStatefulSetStrategy
- V1beta1RuleWithOperations
- V1beta1RunAsUserStrategyOptions
- V1beta1SELinuxStrategyOptions
- V1beta1SelfSubjectAccessReview
- V1beta1SelfSubjectAccessReviewSpec
- V1beta1SelfSubjectRulesReview
- V1beta1SelfSubjectRulesReviewSpec
- V1beta1StatefulSet
- V1beta1StatefulSetCondition
- V1beta1StatefulSetList
- V1beta1StatefulSetSpec
- V1beta1StatefulSetStatus
- V1beta1StatefulSetUpdateStrategy
- V1beta1StorageClass
- V1beta1StorageClassList
- V1beta1Subject
- V1beta1SubjectAccessReview
- V1beta1SubjectAccessReviewSpec
- V1beta1SubjectAccessReviewStatus
- V1beta1SubjectRulesReviewStatus
- V1beta1SupplementalGroupsStrategyOptions
- V1beta1TokenReview
- V1beta1TokenReviewSpec
- V1beta1TokenReviewStatus
- V1beta1UserInfo
- V1beta1ValidatingWebhookConfiguration
- V1beta1ValidatingWebhookConfigurationList
- V1beta1Webhook
- V1beta1WebhookClientConfig
- V1beta2ControllerRevision
- V1beta2ControllerRevisionList
- V1beta2DaemonSet
- V1beta2DaemonSetCondition
- V1beta2DaemonSetList
- V1beta2DaemonSetSpec
- V1beta2DaemonSetStatus
- V1beta2DaemonSetUpdateStrategy
- V1beta2Deployment
- V1beta2DeploymentCondition
- V1beta2DeploymentList
- V1beta2DeploymentSpec
- V1beta2DeploymentStatus
- V1beta2DeploymentStrategy
- V1beta2ReplicaSet
- V1beta2ReplicaSetCondition
- V1beta2ReplicaSetList
- V1beta2ReplicaSetSpec
- V1beta2ReplicaSetStatus
- V1beta2RollingUpdateDaemonSet
- V1beta2RollingUpdateDeployment
- V1beta2RollingUpdateStatefulSetStrategy
- V1beta2Scale
- V1beta2ScaleSpec
- V1beta2ScaleStatus
- V1beta2StatefulSet
- V1beta2StatefulSetCondition
- V1beta2StatefulSetList
- V1beta2StatefulSetSpec
- V1beta2StatefulSetStatus
- V1beta2StatefulSetUpdateStrategy
- V2alpha1CronJob
- V2alpha1CronJobList
- V2alpha1CronJobSpec
- V2alpha1CronJobStatus
- V2alpha1JobTemplateSpec
- V2beta1CrossVersionObjectReference
- V2beta1HorizontalPodAutoscaler
- V2beta1HorizontalPodAutoscalerCondition
- V2beta1HorizontalPodAutoscalerList
- V2beta1HorizontalPodAutoscalerSpec
- V2beta1HorizontalPodAutoscalerStatus
- V2beta1MetricSpec
- V2beta1MetricStatus
- V2beta1ObjectMetricSource
- V2beta1ObjectMetricStatus
- V2beta1PodsMetricSource
- V2beta1PodsMetricStatus
- V2beta1ResourceMetricSource
- V2beta1ResourceMetricStatus
- Type: API key
- API key parameter name: authorization
- Location: HTTP header
- Type: OAuth
- Flow: accessCode
- Authorization URL: https://127.0.0.1:8443/oauth/authorize
- Scopes:
- user:check-access: Read-only access to view your privileges (for example, "can I create builds?")
- user:full: Full read/write access with all of your permissions
- user:info: Read-only access to your user information (including username, identities, and group membership)
- user:list-projects: Read-only access to list your projects and view their metadata (display name, description, etc.)
- user:list-scoped-projects: Read-only access to list your projects viewable with this token and view their metadata (display name, description, etc.)
- Type: OAuth
- Flow: implicit
- Authorization URL: https://127.0.0.1:8443/oauth/authorize
- Scopes:
- user:check-access: Read-only access to view your privileges (for example, "can I create builds?")
- user:full: Full read/write access with all of your permissions
- user:info: Read-only access to your user information (including username, identities, and group membership)
- user:list-projects: Read-only access to list your projects and view their metadata (display name, description, etc.)
- user:list-scoped-projects: Read-only access to list your projects viewable with this token and view their metadata (display name, description, etc.)