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 'unversioned.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: v3.6.0-alpha.0
- Package version: 1.0.0-snapshot
- 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
# create an instance of the API class
api_instance = openshift.client.ApisApi()
try:
api_response = api_instance.get_api_versions()
pprint(api_response)
except ApiException as e:
print("Exception when calling ApisApi->get_api_versions: %s\n" % e)All URIs are relative to https://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| ApisApi | get_api_versions | GET /apis/ | |
| AppsApi | get_apps_api_group | GET /apis/apps/ | |
| AppsOpenshiftIoApi | get_apps_openshift_io_api_group | GET /apis/apps.openshift.io/ | |
| AppsOpenshiftIoV1Api | create_apps_openshift_io_v1_deployment_config_for_all_namespaces | POST /apis/apps.openshift.io/v1/deploymentconfigs | |
| AppsOpenshiftIoV1Api | create_apps_openshift_io_v1_namespaced_deployment_config | POST /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs | |
| AppsOpenshiftIoV1Api | create_apps_openshift_io_v1_namespaced_deployment_config_rollback_rollback | POST /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/rollback | |
| AppsOpenshiftIoV1Api | create_apps_openshift_io_v1_namespaced_deployment_request_instantiate | POST /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/instantiate | |
| AppsOpenshiftIoV1Api | delete_apps_openshift_io_v1_collection_namespaced_deployment_config | DELETE /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs | |
| AppsOpenshiftIoV1Api | delete_apps_openshift_io_v1_namespaced_deployment_config | DELETE /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | get_apps_openshift_io_v1_api_resources | GET /apis/apps.openshift.io/v1/ | |
| AppsOpenshiftIoV1Api | list_apps_openshift_io_v1_deployment_config_for_all_namespaces | GET /apis/apps.openshift.io/v1/deploymentconfigs | |
| AppsOpenshiftIoV1Api | list_apps_openshift_io_v1_namespaced_deployment_config | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs | |
| AppsOpenshiftIoV1Api | patch_apps_openshift_io_v1_namespaced_deployment_config | PATCH /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | patch_apps_openshift_io_v1_namespaced_deployment_config_status | PATCH /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| AppsOpenshiftIoV1Api | patch_apps_openshift_io_v1_namespaced_scale_scale | PATCH /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| AppsOpenshiftIoV1Api | read_apps_openshift_io_v1_namespaced_deployment_config | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | read_apps_openshift_io_v1_namespaced_deployment_config_status | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| AppsOpenshiftIoV1Api | read_apps_openshift_io_v1_namespaced_deployment_log_log | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/log | |
| AppsOpenshiftIoV1Api | read_apps_openshift_io_v1_namespaced_scale_scale | GET /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| AppsOpenshiftIoV1Api | replace_apps_openshift_io_v1_namespaced_deployment_config | PUT /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name} | |
| AppsOpenshiftIoV1Api | replace_apps_openshift_io_v1_namespaced_deployment_config_status | PUT /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| AppsOpenshiftIoV1Api | replace_apps_openshift_io_v1_namespaced_scale_scale | PUT /apis/apps.openshift.io/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| 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_stateful_set | DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets | |
| AppsV1beta1Api | delete_namespaced_stateful_set | DELETE /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta1Api | get_api_resources | GET /apis/apps/v1beta1/ | |
| 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_stateful_set | PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta1Api | patch_namespaced_stateful_set_status | PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | |
| AppsV1beta1Api | read_namespaced_stateful_set | GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta1Api | read_namespaced_stateful_set_status | GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | |
| AppsV1beta1Api | replace_namespaced_stateful_set | PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name} | |
| AppsV1beta1Api | replace_namespaced_stateful_set_status | PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status | |
| AuthenticationApi | get_authentication_api_group | GET /apis/authentication.k8s.io/ | |
| AuthenticationV1beta1Api | create_token_review | POST /apis/authentication.k8s.io/v1beta1/tokenreviews | |
| AuthenticationV1beta1Api | get_api_resources | GET /apis/authentication.k8s.io/v1beta1/ | |
| AuthorizationApi | get_authorization_api_group | GET /apis/authorization.k8s.io/ | |
| AuthorizationOpenshiftIoApi | get_authorization_openshift_io_api_group | GET /apis/authorization.openshift.io/ | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_cluster_policy | POST /apis/authorization.openshift.io/v1/clusterpolicies | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_cluster_policy_binding | POST /apis/authorization.openshift.io/v1/clusterpolicybindings | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_cluster_role | POST /apis/authorization.openshift.io/v1/clusterroles | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_cluster_role_binding | POST /apis/authorization.openshift.io/v1/clusterrolebindings | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_local_resource_access_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/localresourceaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_local_subject_access_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/localsubjectaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_local_resource_access_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/localresourceaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_local_subject_access_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/localsubjectaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_policy | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/policies | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_policy_binding | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/policybindings | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_resource_access_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/resourceaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_role | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_role_binding | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_role_binding_restriction | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_self_subject_rules_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/selfsubjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_subject_access_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/subjectaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_namespaced_subject_rules_review | POST /apis/authorization.openshift.io/v1/namespaces/{namespace}/subjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_policy_binding_for_all_namespaces | POST /apis/authorization.openshift.io/v1/policybindings | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_policy_for_all_namespaces | POST /apis/authorization.openshift.io/v1/policies | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_resource_access_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/resourceaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_role_binding_for_all_namespaces | POST /apis/authorization.openshift.io/v1/rolebindings | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_role_binding_restriction_for_all_namespaces | POST /apis/authorization.openshift.io/v1/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_role_for_all_namespaces | POST /apis/authorization.openshift.io/v1/roles | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_self_subject_rules_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/selfsubjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_subject_access_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/subjectaccessreviews | |
| AuthorizationOpenshiftIoV1Api | create_authorization_openshift_io_v1_subject_rules_review_for_all_namespaces | POST /apis/authorization.openshift.io/v1/subjectrulesreviews | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_cluster_policy | DELETE /apis/authorization.openshift.io/v1/clusterpolicies/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_cluster_policy_binding | DELETE /apis/authorization.openshift.io/v1/clusterpolicybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_cluster_role | DELETE /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_cluster_role_binding | DELETE /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_collection_cluster_policy | DELETE /apis/authorization.openshift.io/v1/clusterpolicies | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_collection_cluster_policy_binding | DELETE /apis/authorization.openshift.io/v1/clusterpolicybindings | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_collection_namespaced_policy | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/policies | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_collection_namespaced_policy_binding | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/policybindings | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_collection_namespaced_role_binding_restriction | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_namespaced_policy | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/policies/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_namespaced_policy_binding | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/policybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_namespaced_role | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_namespaced_role_binding | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | delete_authorization_openshift_io_v1_namespaced_role_binding_restriction | DELETE /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| AuthorizationOpenshiftIoV1Api | get_authorization_openshift_io_v1_api_resources | GET /apis/authorization.openshift.io/v1/ | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_cluster_policy | GET /apis/authorization.openshift.io/v1/clusterpolicies | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_cluster_policy_binding | GET /apis/authorization.openshift.io/v1/clusterpolicybindings | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_cluster_role | GET /apis/authorization.openshift.io/v1/clusterroles | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_cluster_role_binding | GET /apis/authorization.openshift.io/v1/clusterrolebindings | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_namespaced_policy | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/policies | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_namespaced_policy_binding | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/policybindings | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_namespaced_role | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_namespaced_role_binding | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_namespaced_role_binding_restriction | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_policy_binding_for_all_namespaces | GET /apis/authorization.openshift.io/v1/policybindings | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_policy_for_all_namespaces | GET /apis/authorization.openshift.io/v1/policies | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_role_binding_for_all_namespaces | GET /apis/authorization.openshift.io/v1/rolebindings | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_role_binding_restriction_for_all_namespaces | GET /apis/authorization.openshift.io/v1/rolebindingrestrictions | |
| AuthorizationOpenshiftIoV1Api | list_authorization_openshift_io_v1_role_for_all_namespaces | GET /apis/authorization.openshift.io/v1/roles | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_cluster_policy | PATCH /apis/authorization.openshift.io/v1/clusterpolicies/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_cluster_policy_binding | PATCH /apis/authorization.openshift.io/v1/clusterpolicybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_cluster_role | PATCH /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_cluster_role_binding | PATCH /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_namespaced_policy | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/policies/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_namespaced_policy_binding | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/policybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_namespaced_role | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_namespaced_role_binding | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | patch_authorization_openshift_io_v1_namespaced_role_binding_restriction | PATCH /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_cluster_policy | GET /apis/authorization.openshift.io/v1/clusterpolicies/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_cluster_policy_binding | GET /apis/authorization.openshift.io/v1/clusterpolicybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_cluster_role | GET /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_cluster_role_binding | GET /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_namespaced_policy | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/policies/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_namespaced_policy_binding | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/policybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_namespaced_role | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_namespaced_role_binding | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | read_authorization_openshift_io_v1_namespaced_role_binding_restriction | GET /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_cluster_policy | PUT /apis/authorization.openshift.io/v1/clusterpolicies/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_cluster_policy_binding | PUT /apis/authorization.openshift.io/v1/clusterpolicybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_cluster_role | PUT /apis/authorization.openshift.io/v1/clusterroles/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_cluster_role_binding | PUT /apis/authorization.openshift.io/v1/clusterrolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_namespaced_policy | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/policies/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_namespaced_policy_binding | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/policybindings/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_namespaced_role | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/roles/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_namespaced_role_binding | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindings/{name} | |
| AuthorizationOpenshiftIoV1Api | replace_authorization_openshift_io_v1_namespaced_role_binding_restriction | PUT /apis/authorization.openshift.io/v1/namespaces/{namespace}/rolebindingrestrictions/{name} | |
| 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_subject_access_review | POST /apis/authorization.k8s.io/v1beta1/subjectaccessreviews | |
| AuthorizationV1beta1Api | get_api_resources | GET /apis/authorization.k8s.io/v1beta1/ | |
| AutoscalingApi | get_autoscaling_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 | |
| BatchApi | get_batch_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 | |
| BatchV2alpha1Api | create_cron_job_for_all_namespaces | POST /apis/batch/v2alpha1/cronjobs | |
| BatchV2alpha1Api | create_job_for_all_namespaces | POST /apis/batch/v2alpha1/jobs | |
| BatchV2alpha1Api | create_namespaced_cron_job | POST /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs | |
| BatchV2alpha1Api | create_namespaced_job | POST /apis/batch/v2alpha1/namespaces/{namespace}/jobs | |
| BatchV2alpha1Api | create_namespaced_scheduled_job | POST /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs | |
| BatchV2alpha1Api | create_scheduled_job_for_all_namespaces | POST /apis/batch/v2alpha1/scheduledjobs | |
| BatchV2alpha1Api | delete_collection_namespaced_cron_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs | |
| BatchV2alpha1Api | delete_collection_namespaced_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/jobs | |
| BatchV2alpha1Api | delete_collection_namespaced_scheduled_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs | |
| BatchV2alpha1Api | delete_namespaced_cron_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name} | |
| BatchV2alpha1Api | delete_namespaced_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name} | |
| BatchV2alpha1Api | delete_namespaced_scheduled_job | DELETE /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name} | |
| BatchV2alpha1Api | get_api_resources | GET /apis/batch/v2alpha1/ | |
| BatchV2alpha1Api | list_cron_job_for_all_namespaces | GET /apis/batch/v2alpha1/cronjobs | |
| BatchV2alpha1Api | list_job_for_all_namespaces | GET /apis/batch/v2alpha1/jobs | |
| BatchV2alpha1Api | list_namespaced_cron_job | GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs | |
| BatchV2alpha1Api | list_namespaced_job | GET /apis/batch/v2alpha1/namespaces/{namespace}/jobs | |
| BatchV2alpha1Api | list_namespaced_scheduled_job | GET /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs | |
| BatchV2alpha1Api | list_scheduled_job_for_all_namespaces | GET /apis/batch/v2alpha1/scheduledjobs | |
| BatchV2alpha1Api | patch_namespaced_cron_job | PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name} | |
| BatchV2alpha1Api | patch_namespaced_cron_job_status | PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status | |
| BatchV2alpha1Api | patch_namespaced_job | PATCH /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name} | |
| BatchV2alpha1Api | patch_namespaced_job_status | PATCH /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status | |
| BatchV2alpha1Api | patch_namespaced_scheduled_job | PATCH /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name} | |
| BatchV2alpha1Api | patch_namespaced_scheduled_job_status | PATCH /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}/status | |
| BatchV2alpha1Api | read_namespaced_cron_job | GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name} | |
| BatchV2alpha1Api | read_namespaced_cron_job_status | GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status | |
| BatchV2alpha1Api | read_namespaced_job | GET /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name} | |
| BatchV2alpha1Api | read_namespaced_job_status | GET /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status | |
| BatchV2alpha1Api | read_namespaced_scheduled_job | GET /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name} | |
| BatchV2alpha1Api | read_namespaced_scheduled_job_status | GET /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}/status | |
| BatchV2alpha1Api | replace_namespaced_cron_job | PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name} | |
| BatchV2alpha1Api | replace_namespaced_cron_job_status | PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status | |
| BatchV2alpha1Api | replace_namespaced_job | PUT /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name} | |
| BatchV2alpha1Api | replace_namespaced_job_status | PUT /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status | |
| BatchV2alpha1Api | replace_namespaced_scheduled_job | PUT /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name} | |
| BatchV2alpha1Api | replace_namespaced_scheduled_job_status | PUT /apis/batch/v2alpha1/namespaces/{namespace}/scheduledjobs/{name}/status | |
| BuildOpenshiftIoApi | get_build_openshift_io_api_group | GET /apis/build.openshift.io/ | |
| BuildOpenshiftIoV1Api | connect_build_openshift_io_v1_post_namespaced_binary_build_request_options_instantiatebinary | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/instantiatebinary | |
| BuildOpenshiftIoV1Api | connect_build_openshift_io_v1_post_namespaced_status_webhooks | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks | |
| BuildOpenshiftIoV1Api | connect_build_openshift_io_v1_post_namespaced_status_webhooks_with_path | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks/{path} | |
| BuildOpenshiftIoV1Api | create_build_openshift_io_v1_build_config_for_all_namespaces | POST /apis/build.openshift.io/v1/buildconfigs | |
| BuildOpenshiftIoV1Api | create_build_openshift_io_v1_build_for_all_namespaces | POST /apis/build.openshift.io/v1/builds | |
| BuildOpenshiftIoV1Api | create_build_openshift_io_v1_namespaced_build | POST /apis/build.openshift.io/v1/namespaces/{namespace}/builds | |
| BuildOpenshiftIoV1Api | create_build_openshift_io_v1_namespaced_build_config | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs | |
| BuildOpenshiftIoV1Api | create_build_openshift_io_v1_namespaced_build_request_clone | POST /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name}/clone | |
| BuildOpenshiftIoV1Api | create_build_openshift_io_v1_namespaced_build_request_instantiate | POST /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name}/instantiate | |
| BuildOpenshiftIoV1Api | delete_build_openshift_io_v1_collection_namespaced_build | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/builds | |
| BuildOpenshiftIoV1Api | delete_build_openshift_io_v1_collection_namespaced_build_config | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs | |
| BuildOpenshiftIoV1Api | delete_build_openshift_io_v1_namespaced_build | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | delete_build_openshift_io_v1_namespaced_build_config | DELETE /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | get_build_openshift_io_v1_api_resources | GET /apis/build.openshift.io/v1/ | |
| BuildOpenshiftIoV1Api | list_build_openshift_io_v1_build_config_for_all_namespaces | GET /apis/build.openshift.io/v1/buildconfigs | |
| BuildOpenshiftIoV1Api | list_build_openshift_io_v1_build_for_all_namespaces | GET /apis/build.openshift.io/v1/builds | |
| BuildOpenshiftIoV1Api | list_build_openshift_io_v1_namespaced_build | GET /apis/build.openshift.io/v1/namespaces/{namespace}/builds | |
| BuildOpenshiftIoV1Api | list_build_openshift_io_v1_namespaced_build_config | GET /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs | |
| BuildOpenshiftIoV1Api | patch_build_openshift_io_v1_namespaced_build | PATCH /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | patch_build_openshift_io_v1_namespaced_build_config | PATCH /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | read_build_openshift_io_v1_namespaced_build | GET /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | read_build_openshift_io_v1_namespaced_build_config | GET /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | read_build_openshift_io_v1_namespaced_build_log_log | GET /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name}/log | |
| BuildOpenshiftIoV1Api | replace_build_openshift_io_v1_namespaced_build | PUT /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name} | |
| BuildOpenshiftIoV1Api | replace_build_openshift_io_v1_namespaced_build_config | PUT /apis/build.openshift.io/v1/namespaces/{namespace}/buildconfigs/{name} | |
| BuildOpenshiftIoV1Api | replace_build_openshift_io_v1_namespaced_build_details | PUT /apis/build.openshift.io/v1/namespaces/{namespace}/builds/{name}/details | |
| CertificatesApi | get_certificates_api_group | GET /apis/certificates.k8s.io/ | |
| CertificatesV1alpha1Api | create_certificate_signing_request | POST /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | |
| CertificatesV1alpha1Api | delete_certificate_signing_request | DELETE /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | |
| CertificatesV1alpha1Api | delete_collection_certificate_signing_request | DELETE /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | |
| CertificatesV1alpha1Api | get_api_resources | GET /apis/certificates.k8s.io/v1alpha1/ | |
| CertificatesV1alpha1Api | list_certificate_signing_request | GET /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests | |
| CertificatesV1alpha1Api | patch_certificate_signing_request | PATCH /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | |
| CertificatesV1alpha1Api | read_certificate_signing_request | GET /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | |
| CertificatesV1alpha1Api | replace_certificate_signing_request | PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name} | |
| CertificatesV1alpha1Api | replace_certificate_signing_request_approval | PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/approval | |
| CertificatesV1alpha1Api | replace_certificate_signing_request_status | PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status | |
| CoreApi | get_core_api_versions | GET /api/ | |
| CoreV1Api | connect_delete_namespaced_pod_proxy | DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy | |
| CoreV1Api | connect_delete_namespaced_pod_proxy_with_path | DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | |
| CoreV1Api | connect_delete_namespaced_service_proxy | DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy | |
| CoreV1Api | connect_delete_namespaced_service_proxy_with_path | DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | |
| CoreV1Api | connect_delete_node_proxy | DELETE /api/v1/nodes/{name}/proxy | |
| CoreV1Api | connect_delete_node_proxy_with_path | DELETE /api/v1/nodes/{name}/proxy/{path} | |
| CoreV1Api | connect_get_namespaced_pod_attach | GET /api/v1/namespaces/{namespace}/pods/{name}/attach | |
| CoreV1Api | connect_get_namespaced_pod_exec | GET /api/v1/namespaces/{namespace}/pods/{name}/exec | |
| CoreV1Api | connect_get_namespaced_pod_portforward | GET /api/v1/namespaces/{namespace}/pods/{name}/portforward | |
| CoreV1Api | connect_get_namespaced_pod_proxy | GET /api/v1/namespaces/{namespace}/pods/{name}/proxy | |
| CoreV1Api | connect_get_namespaced_pod_proxy_with_path | GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | |
| CoreV1Api | connect_get_namespaced_service_proxy | GET /api/v1/namespaces/{namespace}/services/{name}/proxy | |
| CoreV1Api | connect_get_namespaced_service_proxy_with_path | GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | |
| CoreV1Api | connect_get_node_proxy | GET /api/v1/nodes/{name}/proxy | |
| CoreV1Api | connect_get_node_proxy_with_path | GET /api/v1/nodes/{name}/proxy/{path} | |
| CoreV1Api | connect_head_namespaced_pod_proxy | HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy | |
| CoreV1Api | connect_head_namespaced_pod_proxy_with_path | HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | |
| CoreV1Api | connect_head_namespaced_service_proxy | HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy | |
| CoreV1Api | connect_head_namespaced_service_proxy_with_path | HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | |
| CoreV1Api | connect_head_node_proxy | HEAD /api/v1/nodes/{name}/proxy | |
| CoreV1Api | connect_head_node_proxy_with_path | HEAD /api/v1/nodes/{name}/proxy/{path} | |
| CoreV1Api | connect_options_namespaced_pod_proxy | OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy | |
| CoreV1Api | connect_options_namespaced_pod_proxy_with_path | OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | |
| CoreV1Api | connect_options_namespaced_service_proxy | OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy | |
| CoreV1Api | connect_options_namespaced_service_proxy_with_path | OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | |
| CoreV1Api | connect_options_node_proxy | OPTIONS /api/v1/nodes/{name}/proxy | |
| CoreV1Api | connect_options_node_proxy_with_path | OPTIONS /api/v1/nodes/{name}/proxy/{path} | |
| CoreV1Api | connect_post_namespaced_pod_attach | POST /api/v1/namespaces/{namespace}/pods/{name}/attach | |
| CoreV1Api | connect_post_namespaced_pod_exec | POST /api/v1/namespaces/{namespace}/pods/{name}/exec | |
| CoreV1Api | connect_post_namespaced_pod_portforward | POST /api/v1/namespaces/{namespace}/pods/{name}/portforward | |
| CoreV1Api | connect_post_namespaced_pod_proxy | POST /api/v1/namespaces/{namespace}/pods/{name}/proxy | |
| CoreV1Api | connect_post_namespaced_pod_proxy_with_path | POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | |
| CoreV1Api | connect_post_namespaced_service_proxy | POST /api/v1/namespaces/{namespace}/services/{name}/proxy | |
| CoreV1Api | connect_post_namespaced_service_proxy_with_path | POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | |
| CoreV1Api | connect_post_node_proxy | POST /api/v1/nodes/{name}/proxy | |
| CoreV1Api | connect_post_node_proxy_with_path | POST /api/v1/nodes/{name}/proxy/{path} | |
| CoreV1Api | connect_put_namespaced_pod_proxy | PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy | |
| CoreV1Api | connect_put_namespaced_pod_proxy_with_path | PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} | |
| CoreV1Api | connect_put_namespaced_service_proxy | PUT /api/v1/namespaces/{namespace}/services/{name}/proxy | |
| CoreV1Api | connect_put_namespaced_service_proxy_with_path | PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path} | |
| CoreV1Api | connect_put_node_proxy | PUT /api/v1/nodes/{name}/proxy | |
| CoreV1Api | connect_put_node_proxy_with_path | PUT /api/v1/nodes/{name}/proxy/{path} | |
| CoreV1Api | create_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_binding_binding | POST /api/v1/namespaces/{namespace}/pods/{name}/binding | |
| CoreV1Api | create_namespaced_config_map | POST /api/v1/namespaces/{namespace}/configmaps | |
| CoreV1Api | create_namespaced_endpoints | POST /api/v1/namespaces/{namespace}/endpoints | |
| CoreV1Api | create_namespaced_event | POST /api/v1/namespaces/{namespace}/events | |
| CoreV1Api | create_namespaced_eviction_eviction | POST /api/v1/namespaces/{namespace}/pods/{name}/eviction | |
| CoreV1Api | create_namespaced_limit_range | POST /api/v1/namespaces/{namespace}/limitranges | |
| CoreV1Api | create_namespaced_persistent_volume_claim | POST /api/v1/namespaces/{namespace}/persistentvolumeclaims | |
| CoreV1Api | create_namespaced_pod | POST /api/v1/namespaces/{namespace}/pods | |
| CoreV1Api | create_namespaced_pod_template | POST /api/v1/namespaces/{namespace}/podtemplates | |
| CoreV1Api | create_namespaced_replication_controller | POST /api/v1/namespaces/{namespace}/replicationcontrollers | |
| CoreV1Api | create_namespaced_resource_quota | POST /api/v1/namespaces/{namespace}/resourcequotas | |
| CoreV1Api | create_namespaced_secret | POST /api/v1/namespaces/{namespace}/secrets | |
| CoreV1Api | create_namespaced_service | POST /api/v1/namespaces/{namespace}/services | |
| CoreV1Api | create_namespaced_service_account | POST /api/v1/namespaces/{namespace}/serviceaccounts | |
| CoreV1Api | create_node | POST /api/v1/nodes | |
| CoreV1Api | create_persistent_volume | POST /api/v1/persistentvolumes | |
| CoreV1Api | 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_namespace | DELETE /api/v1/namespaces | |
| CoreV1Api | delete_collection_namespaced_config_map | DELETE /api/v1/namespaces/{namespace}/configmaps | |
| CoreV1Api | delete_collection_namespaced_endpoints | DELETE /api/v1/namespaces/{namespace}/endpoints | |
| CoreV1Api | delete_collection_namespaced_event | DELETE /api/v1/namespaces/{namespace}/events | |
| CoreV1Api | delete_collection_namespaced_limit_range | DELETE /api/v1/namespaces/{namespace}/limitranges | |
| CoreV1Api | delete_collection_namespaced_persistent_volume_claim | DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims | |
| CoreV1Api | delete_collection_namespaced_pod | DELETE /api/v1/namespaces/{namespace}/pods | |
| CoreV1Api | delete_collection_namespaced_pod_template | DELETE /api/v1/namespaces/{namespace}/podtemplates | |
| CoreV1Api | delete_collection_namespaced_replication_controller | DELETE /api/v1/namespaces/{namespace}/replicationcontrollers | |
| CoreV1Api | delete_collection_namespaced_resource_quota | DELETE /api/v1/namespaces/{namespace}/resourcequotas | |
| CoreV1Api | delete_collection_namespaced_secret | DELETE /api/v1/namespaces/{namespace}/secrets | |
| CoreV1Api | delete_collection_namespaced_service_account | DELETE /api/v1/namespaces/{namespace}/serviceaccounts | |
| CoreV1Api | delete_collection_node | DELETE /api/v1/nodes | |
| CoreV1Api | delete_collection_persistent_volume | DELETE /api/v1/persistentvolumes | |
| CoreV1Api | delete_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_status | PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | |
| CoreV1Api | patch_namespaced_resource_quota | PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name} | |
| CoreV1Api | patch_namespaced_resource_quota_status | PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | |
| CoreV1Api | patch_namespaced_scale_scale | PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| CoreV1Api | patch_namespaced_secret | PATCH /api/v1/namespaces/{namespace}/secrets/{name} | |
| CoreV1Api | patch_namespaced_service | PATCH /api/v1/namespaces/{namespace}/services/{name} | |
| CoreV1Api | patch_namespaced_service_account | PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name} | |
| CoreV1Api | patch_namespaced_service_status | PATCH /api/v1/namespaces/{namespace}/services/{name}/status | |
| CoreV1Api | patch_node | PATCH /api/v1/nodes/{name} | |
| CoreV1Api | patch_node_status | PATCH /api/v1/nodes/{name}/status | |
| CoreV1Api | patch_persistent_volume | PATCH /api/v1/persistentvolumes/{name} | |
| CoreV1Api | patch_persistent_volume_status | PATCH /api/v1/persistentvolumes/{name}/status | |
| CoreV1Api | 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_post_namespaced_pod | POST /api/v1/proxy/namespaces/{namespace}/pods/{name} | |
| CoreV1Api | proxy_post_namespaced_pod_with_path | POST /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | |
| CoreV1Api | proxy_post_namespaced_service | POST /api/v1/proxy/namespaces/{namespace}/services/{name} | |
| CoreV1Api | proxy_post_namespaced_service_with_path | POST /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | |
| CoreV1Api | proxy_post_node | POST /api/v1/proxy/nodes/{name} | |
| CoreV1Api | proxy_post_node_with_path | POST /api/v1/proxy/nodes/{name}/{path} | |
| CoreV1Api | proxy_put_namespaced_pod | PUT /api/v1/proxy/namespaces/{namespace}/pods/{name} | |
| CoreV1Api | proxy_put_namespaced_pod_with_path | PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path} | |
| CoreV1Api | proxy_put_namespaced_service | PUT /api/v1/proxy/namespaces/{namespace}/services/{name} | |
| CoreV1Api | proxy_put_namespaced_service_with_path | PUT /api/v1/proxy/namespaces/{namespace}/services/{name}/{path} | |
| CoreV1Api | proxy_put_node | PUT /api/v1/proxy/nodes/{name} | |
| CoreV1Api | proxy_put_node_with_path | PUT /api/v1/proxy/nodes/{name}/{path} | |
| CoreV1Api | read_component_status | GET /api/v1/componentstatuses/{name} | |
| CoreV1Api | read_namespace | GET /api/v1/namespaces/{name} | |
| CoreV1Api | read_namespace_status | GET /api/v1/namespaces/{name}/status | |
| CoreV1Api | read_namespaced_config_map | GET /api/v1/namespaces/{namespace}/configmaps/{name} | |
| CoreV1Api | read_namespaced_endpoints | GET /api/v1/namespaces/{namespace}/endpoints/{name} | |
| CoreV1Api | read_namespaced_event | GET /api/v1/namespaces/{namespace}/events/{name} | |
| CoreV1Api | read_namespaced_limit_range | GET /api/v1/namespaces/{namespace}/limitranges/{name} | |
| CoreV1Api | read_namespaced_persistent_volume_claim | GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} | |
| CoreV1Api | read_namespaced_persistent_volume_claim_status | GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status | |
| CoreV1Api | read_namespaced_pod | GET /api/v1/namespaces/{namespace}/pods/{name} | |
| CoreV1Api | read_namespaced_pod_log | GET /api/v1/namespaces/{namespace}/pods/{name}/log | |
| CoreV1Api | read_namespaced_pod_status | GET /api/v1/namespaces/{namespace}/pods/{name}/status | |
| CoreV1Api | read_namespaced_pod_template | GET /api/v1/namespaces/{namespace}/podtemplates/{name} | |
| CoreV1Api | read_namespaced_replication_controller | GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name} | |
| CoreV1Api | read_namespaced_replication_controller_status | GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | |
| CoreV1Api | read_namespaced_resource_quota | GET /api/v1/namespaces/{namespace}/resourcequotas/{name} | |
| CoreV1Api | read_namespaced_resource_quota_status | GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | |
| CoreV1Api | read_namespaced_scale_scale | GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| CoreV1Api | read_namespaced_secret | GET /api/v1/namespaces/{namespace}/secrets/{name} | |
| CoreV1Api | read_namespaced_service | GET /api/v1/namespaces/{namespace}/services/{name} | |
| CoreV1Api | read_namespaced_service_account | GET /api/v1/namespaces/{namespace}/serviceaccounts/{name} | |
| CoreV1Api | read_namespaced_service_status | GET /api/v1/namespaces/{namespace}/services/{name}/status | |
| CoreV1Api | read_node | GET /api/v1/nodes/{name} | |
| CoreV1Api | read_node_status | GET /api/v1/nodes/{name}/status | |
| CoreV1Api | read_persistent_volume | GET /api/v1/persistentvolumes/{name} | |
| CoreV1Api | read_persistent_volume_status | GET /api/v1/persistentvolumes/{name}/status | |
| CoreV1Api | 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_status | PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status | |
| CoreV1Api | replace_namespaced_resource_quota | PUT /api/v1/namespaces/{namespace}/resourcequotas/{name} | |
| CoreV1Api | replace_namespaced_resource_quota_status | PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status | |
| CoreV1Api | replace_namespaced_scale_scale | PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| CoreV1Api | replace_namespaced_secret | PUT /api/v1/namespaces/{namespace}/secrets/{name} | |
| CoreV1Api | replace_namespaced_service | PUT /api/v1/namespaces/{namespace}/services/{name} | |
| CoreV1Api | replace_namespaced_service_account | PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name} | |
| CoreV1Api | replace_namespaced_service_status | PUT /api/v1/namespaces/{namespace}/services/{name}/status | |
| CoreV1Api | replace_node | PUT /api/v1/nodes/{name} | |
| CoreV1Api | replace_node_status | PUT /api/v1/nodes/{name}/status | |
| CoreV1Api | replace_persistent_volume | PUT /api/v1/persistentvolumes/{name} | |
| CoreV1Api | replace_persistent_volume_status | PUT /api/v1/persistentvolumes/{name}/status | |
| CoreV1Api | replace_security_context_constraints | PUT /api/v1/securitycontextconstraints/{name} | |
| ExtensionsApi | get_extensions_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_horizontal_pod_autoscaler_for_all_namespaces | POST /apis/extensions/v1beta1/horizontalpodautoscalers | |
| ExtensionsV1beta1Api | create_ingress_for_all_namespaces | POST /apis/extensions/v1beta1/ingresses | |
| ExtensionsV1beta1Api | create_job_for_all_namespaces | POST /apis/extensions/v1beta1/jobs | |
| ExtensionsV1beta1Api | create_namespaced_daemon_set | POST /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | |
| ExtensionsV1beta1Api | create_namespaced_deployment | POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments | |
| ExtensionsV1beta1Api | create_namespaced_deployment_rollback_rollback | POST /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback | |
| ExtensionsV1beta1Api | create_namespaced_horizontal_pod_autoscaler | POST /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | |
| ExtensionsV1beta1Api | create_namespaced_ingress | POST /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | |
| ExtensionsV1beta1Api | create_namespaced_job | POST /apis/extensions/v1beta1/namespaces/{namespace}/jobs | |
| 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 | create_third_party_resource | POST /apis/extensions/v1beta1/thirdpartyresources | |
| ExtensionsV1beta1Api | delete_collection_namespaced_daemon_set | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets | |
| ExtensionsV1beta1Api | delete_collection_namespaced_deployment | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments | |
| ExtensionsV1beta1Api | delete_collection_namespaced_horizontal_pod_autoscaler | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | |
| ExtensionsV1beta1Api | delete_collection_namespaced_ingress | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | |
| ExtensionsV1beta1Api | delete_collection_namespaced_job | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs | |
| ExtensionsV1beta1Api | delete_collection_namespaced_network_policy | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | |
| ExtensionsV1beta1Api | delete_collection_namespaced_replica_set | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | |
| ExtensionsV1beta1Api | delete_collection_pod_security_policy | DELETE /apis/extensions/v1beta1/podsecuritypolicies | |
| ExtensionsV1beta1Api | delete_collection_third_party_resource | DELETE /apis/extensions/v1beta1/thirdpartyresources | |
| ExtensionsV1beta1Api | delete_namespaced_daemon_set | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | |
| ExtensionsV1beta1Api | delete_namespaced_deployment | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | |
| ExtensionsV1beta1Api | delete_namespaced_horizontal_pod_autoscaler | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | |
| ExtensionsV1beta1Api | delete_namespaced_ingress | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name} | |
| ExtensionsV1beta1Api | delete_namespaced_job | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | |
| ExtensionsV1beta1Api | delete_namespaced_network_policy | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | |
| ExtensionsV1beta1Api | delete_namespaced_replica_set | DELETE /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | |
| ExtensionsV1beta1Api | delete_pod_security_policy | DELETE /apis/extensions/v1beta1/podsecuritypolicies/{name} | |
| ExtensionsV1beta1Api | delete_third_party_resource | DELETE /apis/extensions/v1beta1/thirdpartyresources/{name} | |
| ExtensionsV1beta1Api | get_api_resources | GET /apis/extensions/v1beta1/ | |
| ExtensionsV1beta1Api | list_daemon_set_for_all_namespaces | GET /apis/extensions/v1beta1/daemonsets | |
| ExtensionsV1beta1Api | list_deployment_for_all_namespaces | GET /apis/extensions/v1beta1/deployments | |
| ExtensionsV1beta1Api | list_horizontal_pod_autoscaler_for_all_namespaces | GET /apis/extensions/v1beta1/horizontalpodautoscalers | |
| ExtensionsV1beta1Api | list_ingress_for_all_namespaces | GET /apis/extensions/v1beta1/ingresses | |
| ExtensionsV1beta1Api | list_job_for_all_namespaces | GET /apis/extensions/v1beta1/jobs | |
| 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_horizontal_pod_autoscaler | GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers | |
| ExtensionsV1beta1Api | list_namespaced_ingress | GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses | |
| ExtensionsV1beta1Api | list_namespaced_job | GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs | |
| ExtensionsV1beta1Api | list_namespaced_network_policy | GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies | |
| ExtensionsV1beta1Api | list_namespaced_replica_set | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets | |
| ExtensionsV1beta1Api | list_network_policy_for_all_namespaces | GET /apis/extensions/v1beta1/networkpolicies | |
| ExtensionsV1beta1Api | list_pod_security_policy | GET /apis/extensions/v1beta1/podsecuritypolicies | |
| ExtensionsV1beta1Api | list_replica_set_for_all_namespaces | GET /apis/extensions/v1beta1/replicasets | |
| ExtensionsV1beta1Api | list_third_party_resource | GET /apis/extensions/v1beta1/thirdpartyresources | |
| ExtensionsV1beta1Api | patch_namespaced_daemon_set | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | |
| ExtensionsV1beta1Api | patch_namespaced_daemon_set_status | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | |
| ExtensionsV1beta1Api | patch_namespaced_deployment | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | |
| ExtensionsV1beta1Api | patch_namespaced_deployment_status | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| ExtensionsV1beta1Api | patch_namespaced_deployments_scale | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| ExtensionsV1beta1Api | patch_namespaced_horizontal_pod_autoscaler | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | |
| ExtensionsV1beta1Api | patch_namespaced_horizontal_pod_autoscaler_status | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{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_job | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | |
| ExtensionsV1beta1Api | patch_namespaced_job_status | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | |
| ExtensionsV1beta1Api | patch_namespaced_network_policy | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | |
| ExtensionsV1beta1Api | patch_namespaced_replica_set | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | |
| ExtensionsV1beta1Api | patch_namespaced_replica_set_status | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | |
| ExtensionsV1beta1Api | patch_namespaced_replicasets_scale | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | |
| ExtensionsV1beta1Api | patch_namespaced_replicationcontrollers_scale | PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| ExtensionsV1beta1Api | patch_pod_security_policy | PATCH /apis/extensions/v1beta1/podsecuritypolicies/{name} | |
| ExtensionsV1beta1Api | patch_third_party_resource | PATCH /apis/extensions/v1beta1/thirdpartyresources/{name} | |
| ExtensionsV1beta1Api | read_namespaced_daemon_set | GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | |
| ExtensionsV1beta1Api | read_namespaced_daemon_set_status | GET /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | |
| ExtensionsV1beta1Api | read_namespaced_deployment | GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | |
| ExtensionsV1beta1Api | read_namespaced_deployment_status | GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| ExtensionsV1beta1Api | read_namespaced_deployments_scale | GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| ExtensionsV1beta1Api | read_namespaced_horizontal_pod_autoscaler | GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | |
| ExtensionsV1beta1Api | read_namespaced_horizontal_pod_autoscaler_status | GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{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_job | GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | |
| ExtensionsV1beta1Api | read_namespaced_job_status | GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | |
| ExtensionsV1beta1Api | read_namespaced_network_policy | GET /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | |
| ExtensionsV1beta1Api | read_namespaced_replica_set | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | |
| ExtensionsV1beta1Api | read_namespaced_replica_set_status | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | |
| ExtensionsV1beta1Api | read_namespaced_replicasets_scale | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | |
| ExtensionsV1beta1Api | read_namespaced_replicationcontrollers_scale | GET /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| ExtensionsV1beta1Api | read_pod_security_policy | GET /apis/extensions/v1beta1/podsecuritypolicies/{name} | |
| ExtensionsV1beta1Api | read_third_party_resource | GET /apis/extensions/v1beta1/thirdpartyresources/{name} | |
| ExtensionsV1beta1Api | replace_namespaced_daemon_set | PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} | |
| ExtensionsV1beta1Api | replace_namespaced_daemon_set_status | PUT /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status | |
| ExtensionsV1beta1Api | replace_namespaced_deployment | PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name} | |
| ExtensionsV1beta1Api | replace_namespaced_deployment_status | PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status | |
| ExtensionsV1beta1Api | replace_namespaced_deployments_scale | PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale | |
| ExtensionsV1beta1Api | replace_namespaced_horizontal_pod_autoscaler | PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name} | |
| ExtensionsV1beta1Api | replace_namespaced_horizontal_pod_autoscaler_status | PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{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_job | PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name} | |
| ExtensionsV1beta1Api | replace_namespaced_job_status | PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status | |
| ExtensionsV1beta1Api | replace_namespaced_network_policy | PUT /apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name} | |
| ExtensionsV1beta1Api | replace_namespaced_replica_set | PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name} | |
| ExtensionsV1beta1Api | replace_namespaced_replica_set_status | PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status | |
| ExtensionsV1beta1Api | replace_namespaced_replicasets_scale | PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale | |
| ExtensionsV1beta1Api | replace_namespaced_replicationcontrollers_scale | PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale | |
| ExtensionsV1beta1Api | replace_pod_security_policy | PUT /apis/extensions/v1beta1/podsecuritypolicies/{name} | |
| ExtensionsV1beta1Api | replace_third_party_resource | PUT /apis/extensions/v1beta1/thirdpartyresources/{name} | |
| ImageOpenshiftIoApi | get_image_openshift_io_api_group | GET /apis/image.openshift.io/ | |
| ImageOpenshiftIo0Api | get_image_openshift_io0_api_resources | GET /apis/image.openshift.io/1.0/ | |
| ImageOpenshiftIoPre012Api | get_image_openshift_io_pre012_api_resources | GET /apis/image.openshift.io/pre012/ | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_image | POST /apis/image.openshift.io/v1/images | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_image_signature | POST /apis/image.openshift.io/v1/imagesignatures | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_image_stream_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreams | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_image_stream_import_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreamimports | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_image_stream_mapping_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreammappings | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_image_stream_tag_for_all_namespaces | POST /apis/image.openshift.io/v1/imagestreamtags | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_namespaced_image_stream | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_namespaced_image_stream_import | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamimports | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_namespaced_image_stream_mapping | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreammappings | |
| ImageOpenshiftIoV1Api | create_image_openshift_io_v1_namespaced_image_stream_tag | POST /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags | |
| ImageOpenshiftIoV1Api | delete_image_openshift_io_v1_collection_image | DELETE /apis/image.openshift.io/v1/images | |
| ImageOpenshiftIoV1Api | delete_image_openshift_io_v1_collection_namespaced_image_stream | DELETE /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams | |
| ImageOpenshiftIoV1Api | delete_image_openshift_io_v1_image | DELETE /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | delete_image_openshift_io_v1_image_signature | DELETE /apis/image.openshift.io/v1/imagesignatures/{name} | |
| ImageOpenshiftIoV1Api | delete_image_openshift_io_v1_namespaced_image_stream | DELETE /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | delete_image_openshift_io_v1_namespaced_image_stream_tag | DELETE /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| ImageOpenshiftIoV1Api | get_image_openshift_io_v1_api_resources | GET /apis/image.openshift.io/v1/ | |
| ImageOpenshiftIoV1Api | list_image_openshift_io_v1_image | GET /apis/image.openshift.io/v1/images | |
| ImageOpenshiftIoV1Api | list_image_openshift_io_v1_image_stream_for_all_namespaces | GET /apis/image.openshift.io/v1/imagestreams | |
| ImageOpenshiftIoV1Api | list_image_openshift_io_v1_image_stream_tag_for_all_namespaces | GET /apis/image.openshift.io/v1/imagestreamtags | |
| ImageOpenshiftIoV1Api | list_image_openshift_io_v1_namespaced_image_stream | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams | |
| ImageOpenshiftIoV1Api | list_image_openshift_io_v1_namespaced_image_stream_tag | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags | |
| ImageOpenshiftIoV1Api | patch_image_openshift_io_v1_image | PATCH /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | patch_image_openshift_io_v1_namespaced_image_stream | PATCH /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | patch_image_openshift_io_v1_namespaced_image_stream_status | PATCH /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| ImageOpenshiftIoV1Api | patch_image_openshift_io_v1_namespaced_image_stream_tag | PATCH /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| ImageOpenshiftIoV1Api | read_image_openshift_io_v1_image | GET /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | read_image_openshift_io_v1_namespaced_image_stream | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | read_image_openshift_io_v1_namespaced_image_stream_image | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamimages/{name} | |
| ImageOpenshiftIoV1Api | read_image_openshift_io_v1_namespaced_image_stream_status | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| ImageOpenshiftIoV1Api | read_image_openshift_io_v1_namespaced_image_stream_tag | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| ImageOpenshiftIoV1Api | read_image_openshift_io_v1_namespaced_secret_list_secrets | GET /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/secrets | |
| ImageOpenshiftIoV1Api | replace_image_openshift_io_v1_image | PUT /apis/image.openshift.io/v1/images/{name} | |
| ImageOpenshiftIoV1Api | replace_image_openshift_io_v1_namespaced_image_stream | PUT /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name} | |
| ImageOpenshiftIoV1Api | replace_image_openshift_io_v1_namespaced_image_stream_status | PUT /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreams/{name}/status | |
| ImageOpenshiftIoV1Api | replace_image_openshift_io_v1_namespaced_image_stream_tag | PUT /apis/image.openshift.io/v1/namespaces/{namespace}/imagestreamtags/{name} | |
| NetworkOpenshiftIoApi | get_network_openshift_io_api_group | GET /apis/network.openshift.io/ | |
| NetworkOpenshiftIoV1Api | create_network_openshift_io_v1_cluster_network | POST /apis/network.openshift.io/v1/clusternetworks | |
| NetworkOpenshiftIoV1Api | create_network_openshift_io_v1_egress_network_policy_for_all_namespaces | POST /apis/network.openshift.io/v1/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | create_network_openshift_io_v1_host_subnet | POST /apis/network.openshift.io/v1/hostsubnets | |
| NetworkOpenshiftIoV1Api | create_network_openshift_io_v1_namespaced_egress_network_policy | POST /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | create_network_openshift_io_v1_net_namespace | POST /apis/network.openshift.io/v1/netnamespaces | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_cluster_network | DELETE /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_collection_cluster_network | DELETE /apis/network.openshift.io/v1/clusternetworks | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_collection_host_subnet | DELETE /apis/network.openshift.io/v1/hostsubnets | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_collection_namespaced_egress_network_policy | DELETE /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_collection_net_namespace | DELETE /apis/network.openshift.io/v1/netnamespaces | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_host_subnet | DELETE /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_namespaced_egress_network_policy | DELETE /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | delete_network_openshift_io_v1_net_namespace | DELETE /apis/network.openshift.io/v1/netnamespaces/{name} | |
| NetworkOpenshiftIoV1Api | get_network_openshift_io_v1_api_resources | GET /apis/network.openshift.io/v1/ | |
| NetworkOpenshiftIoV1Api | list_network_openshift_io_v1_cluster_network | GET /apis/network.openshift.io/v1/clusternetworks | |
| NetworkOpenshiftIoV1Api | list_network_openshift_io_v1_egress_network_policy_for_all_namespaces | GET /apis/network.openshift.io/v1/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | list_network_openshift_io_v1_host_subnet | GET /apis/network.openshift.io/v1/hostsubnets | |
| NetworkOpenshiftIoV1Api | list_network_openshift_io_v1_namespaced_egress_network_policy | GET /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies | |
| NetworkOpenshiftIoV1Api | list_network_openshift_io_v1_net_namespace | GET /apis/network.openshift.io/v1/netnamespaces | |
| NetworkOpenshiftIoV1Api | patch_network_openshift_io_v1_cluster_network | PATCH /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | patch_network_openshift_io_v1_host_subnet | PATCH /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | patch_network_openshift_io_v1_namespaced_egress_network_policy | PATCH /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | patch_network_openshift_io_v1_net_namespace | PATCH /apis/network.openshift.io/v1/netnamespaces/{name} | |
| NetworkOpenshiftIoV1Api | read_network_openshift_io_v1_cluster_network | GET /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | read_network_openshift_io_v1_host_subnet | GET /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | read_network_openshift_io_v1_namespaced_egress_network_policy | GET /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | read_network_openshift_io_v1_net_namespace | GET /apis/network.openshift.io/v1/netnamespaces/{name} | |
| NetworkOpenshiftIoV1Api | replace_network_openshift_io_v1_cluster_network | PUT /apis/network.openshift.io/v1/clusternetworks/{name} | |
| NetworkOpenshiftIoV1Api | replace_network_openshift_io_v1_host_subnet | PUT /apis/network.openshift.io/v1/hostsubnets/{name} | |
| NetworkOpenshiftIoV1Api | replace_network_openshift_io_v1_namespaced_egress_network_policy | PUT /apis/network.openshift.io/v1/namespaces/{namespace}/egressnetworkpolicies/{name} | |
| NetworkOpenshiftIoV1Api | replace_network_openshift_io_v1_net_namespace | PUT /apis/network.openshift.io/v1/netnamespaces/{name} | |
| OapiApi | connect_post_namespaced_binary_build_request_options_instantiatebinary | POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/instantiatebinary | |
| OapiApi | connect_post_namespaced_status_webhooks | POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks | |
| OapiApi | connect_post_namespaced_status_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_policy | POST /oapi/v1/clusterpolicies | |
| OapiApi | create_cluster_policy_binding | POST /oapi/v1/clusterpolicybindings | |
| 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_deployment_config_rollback_for_all_namespaces | POST /oapi/v1/deploymentconfigrollbacks | |
| 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_config | POST /oapi/v1/namespaces/{namespace}/buildconfigs | |
| OapiApi | create_namespaced_build_request_clone | POST /oapi/v1/namespaces/{namespace}/builds/{name}/clone | |
| OapiApi | create_namespaced_build_request_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_rollback | POST /oapi/v1/namespaces/{namespace}/deploymentconfigrollbacks | |
| OapiApi | create_namespaced_deployment_config_rollback_rollback | POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/rollback | |
| OapiApi | create_namespaced_deployment_request_instantiate | POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/instantiate | |
| 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_policy | POST /oapi/v1/namespaces/{namespace}/policies | |
| OapiApi | create_namespaced_policy_binding | POST /oapi/v1/namespaces/{namespace}/policybindings | |
| 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_policy_binding_for_all_namespaces | POST /oapi/v1/policybindings | |
| OapiApi | create_policy_for_all_namespaces | POST /oapi/v1/policies | |
| 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_policy | DELETE /oapi/v1/clusterpolicies/{name} | |
| OapiApi | delete_cluster_policy_binding | DELETE /oapi/v1/clusterpolicybindings/{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_policy | DELETE /oapi/v1/clusterpolicies | |
| OapiApi | delete_collection_cluster_policy_binding | DELETE /oapi/v1/clusterpolicybindings | |
| 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_policy | DELETE /oapi/v1/namespaces/{namespace}/policies | |
| OapiApi | delete_collection_namespaced_policy_binding | DELETE /oapi/v1/namespaces/{namespace}/policybindings | |
| 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_policy | DELETE /oapi/v1/namespaces/{namespace}/policies/{name} | |
| OapiApi | delete_namespaced_policy_binding | DELETE /oapi/v1/namespaces/{namespace}/policybindings/{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 | generate_namespaced_deployment_config | GET /oapi/v1/namespaces/{namespace}/generatedeploymentconfigs/{name} | |
| OapiApi | get_api_resources | GET /oapi/v1/ | |
| OapiApi | get_oapi_version | 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_policy | GET /oapi/v1/clusterpolicies | |
| OapiApi | list_cluster_policy_binding | GET /oapi/v1/clusterpolicybindings | |
| 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_policy | GET /oapi/v1/namespaces/{namespace}/policies | |
| OapiApi | list_namespaced_policy_binding | GET /oapi/v1/namespaces/{namespace}/policybindings | |
| 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_policy_binding_for_all_namespaces | GET /oapi/v1/policybindings | |
| OapiApi | list_policy_for_all_namespaces | GET /oapi/v1/policies | |
| 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_policy | PATCH /oapi/v1/clusterpolicies/{name} | |
| OapiApi | patch_cluster_policy_binding | PATCH /oapi/v1/clusterpolicybindings/{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_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_policy | PATCH /oapi/v1/namespaces/{namespace}/policies/{name} | |
| OapiApi | patch_namespaced_policy_binding | PATCH /oapi/v1/namespaces/{namespace}/policybindings/{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_scale_scale | PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| 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_policy | GET /oapi/v1/clusterpolicies/{name} | |
| OapiApi | read_cluster_policy_binding | GET /oapi/v1/clusterpolicybindings/{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_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_status | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/status | |
| OapiApi | read_namespaced_deployment_log_log | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/log | |
| 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_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_policy | GET /oapi/v1/namespaces/{namespace}/policies/{name} | |
| OapiApi | read_namespaced_policy_binding | GET /oapi/v1/namespaces/{namespace}/policybindings/{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_scale_scale | GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| OapiApi | read_namespaced_secret_list_secrets | GET /oapi/v1/namespaces/{namespace}/imagestreams/{name}/secrets | |
| 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_policy | PUT /oapi/v1/clusterpolicies/{name} | |
| OapiApi | replace_cluster_policy_binding | PUT /oapi/v1/clusterpolicybindings/{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_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_policy | PUT /oapi/v1/namespaces/{namespace}/policies/{name} | |
| OapiApi | replace_namespaced_policy_binding | PUT /oapi/v1/namespaces/{namespace}/policybindings/{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_scale_scale | PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale | |
| 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_oauth_openshift_io_api_group | GET /apis/oauth.openshift.io/ | |
| OauthOpenshiftIoV1Api | create_oauth_openshift_io_v1_o_auth_access_token | POST /apis/oauth.openshift.io/v1/oauthaccesstokens | |
| OauthOpenshiftIoV1Api | create_oauth_openshift_io_v1_o_auth_authorize_token | POST /apis/oauth.openshift.io/v1/oauthauthorizetokens | |
| OauthOpenshiftIoV1Api | create_oauth_openshift_io_v1_o_auth_client | POST /apis/oauth.openshift.io/v1/oauthclients | |
| OauthOpenshiftIoV1Api | create_oauth_openshift_io_v1_o_auth_client_authorization | POST /apis/oauth.openshift.io/v1/oauthclientauthorizations | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_collection_o_auth_access_token | DELETE /apis/oauth.openshift.io/v1/oauthaccesstokens | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_collection_o_auth_authorize_token | DELETE /apis/oauth.openshift.io/v1/oauthauthorizetokens | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_collection_o_auth_client | DELETE /apis/oauth.openshift.io/v1/oauthclients | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_collection_o_auth_client_authorization | DELETE /apis/oauth.openshift.io/v1/oauthclientauthorizations | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_o_auth_access_token | DELETE /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_o_auth_authorize_token | DELETE /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_o_auth_client | DELETE /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | delete_oauth_openshift_io_v1_o_auth_client_authorization | DELETE /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| OauthOpenshiftIoV1Api | get_oauth_openshift_io_v1_api_resources | GET /apis/oauth.openshift.io/v1/ | |
| OauthOpenshiftIoV1Api | list_oauth_openshift_io_v1_o_auth_access_token | GET /apis/oauth.openshift.io/v1/oauthaccesstokens | |
| OauthOpenshiftIoV1Api | list_oauth_openshift_io_v1_o_auth_authorize_token | GET /apis/oauth.openshift.io/v1/oauthauthorizetokens | |
| OauthOpenshiftIoV1Api | list_oauth_openshift_io_v1_o_auth_client | GET /apis/oauth.openshift.io/v1/oauthclients | |
| OauthOpenshiftIoV1Api | list_oauth_openshift_io_v1_o_auth_client_authorization | GET /apis/oauth.openshift.io/v1/oauthclientauthorizations | |
| OauthOpenshiftIoV1Api | patch_oauth_openshift_io_v1_o_auth_access_token | PATCH /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | patch_oauth_openshift_io_v1_o_auth_authorize_token | PATCH /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | patch_oauth_openshift_io_v1_o_auth_client | PATCH /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | patch_oauth_openshift_io_v1_o_auth_client_authorization | PATCH /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| OauthOpenshiftIoV1Api | read_oauth_openshift_io_v1_o_auth_access_token | GET /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | read_oauth_openshift_io_v1_o_auth_authorize_token | GET /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | read_oauth_openshift_io_v1_o_auth_client | GET /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | read_oauth_openshift_io_v1_o_auth_client_authorization | GET /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| OauthOpenshiftIoV1Api | replace_oauth_openshift_io_v1_o_auth_access_token | PUT /apis/oauth.openshift.io/v1/oauthaccesstokens/{name} | |
| OauthOpenshiftIoV1Api | replace_oauth_openshift_io_v1_o_auth_authorize_token | PUT /apis/oauth.openshift.io/v1/oauthauthorizetokens/{name} | |
| OauthOpenshiftIoV1Api | replace_oauth_openshift_io_v1_o_auth_client | PUT /apis/oauth.openshift.io/v1/oauthclients/{name} | |
| OauthOpenshiftIoV1Api | replace_oauth_openshift_io_v1_o_auth_client_authorization | PUT /apis/oauth.openshift.io/v1/oauthclientauthorizations/{name} | |
| OsapiApi | get_osapi_version | GET /osapi/ | |
| PolicyApi | get_policy_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_project_openshift_io_api_group | GET /apis/project.openshift.io/ | |
| ProjectOpenshiftIoV1Api | create_project_openshift_io_v1_project | POST /apis/project.openshift.io/v1/projects | |
| ProjectOpenshiftIoV1Api | create_project_openshift_io_v1_project_request | POST /apis/project.openshift.io/v1/projectrequests | |
| ProjectOpenshiftIoV1Api | delete_project_openshift_io_v1_project | DELETE /apis/project.openshift.io/v1/projects/{name} | |
| ProjectOpenshiftIoV1Api | get_project_openshift_io_v1_api_resources | GET /apis/project.openshift.io/v1/ | |
| ProjectOpenshiftIoV1Api | list_project_openshift_io_v1_project | GET /apis/project.openshift.io/v1/projects | |
| ProjectOpenshiftIoV1Api | list_project_openshift_io_v1_project_request | GET /apis/project.openshift.io/v1/projectrequests | |
| ProjectOpenshiftIoV1Api | patch_project_openshift_io_v1_project | PATCH /apis/project.openshift.io/v1/projects/{name} | |
| ProjectOpenshiftIoV1Api | read_project_openshift_io_v1_project | GET /apis/project.openshift.io/v1/projects/{name} | |
| ProjectOpenshiftIoV1Api | replace_project_openshift_io_v1_project | PUT /apis/project.openshift.io/v1/projects/{name} | |
| QuotaOpenshiftIoApi | get_quota_openshift_io_api_group | GET /apis/quota.openshift.io/ | |
| QuotaOpenshiftIoV1Api | create_quota_openshift_io_v1_cluster_resource_quota | POST /apis/quota.openshift.io/v1/clusterresourcequotas | |
| QuotaOpenshiftIoV1Api | delete_quota_openshift_io_v1_cluster_resource_quota | DELETE /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | delete_quota_openshift_io_v1_collection_cluster_resource_quota | DELETE /apis/quota.openshift.io/v1/clusterresourcequotas | |
| QuotaOpenshiftIoV1Api | get_quota_openshift_io_v1_api_resources | GET /apis/quota.openshift.io/v1/ | |
| QuotaOpenshiftIoV1Api | list_quota_openshift_io_v1_applied_cluster_resource_quota_for_all_namespaces | GET /apis/quota.openshift.io/v1/appliedclusterresourcequotas | |
| QuotaOpenshiftIoV1Api | list_quota_openshift_io_v1_cluster_resource_quota | GET /apis/quota.openshift.io/v1/clusterresourcequotas | |
| QuotaOpenshiftIoV1Api | list_quota_openshift_io_v1_namespaced_applied_cluster_resource_quota | GET /apis/quota.openshift.io/v1/namespaces/{namespace}/appliedclusterresourcequotas | |
| QuotaOpenshiftIoV1Api | patch_quota_openshift_io_v1_cluster_resource_quota | PATCH /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | patch_quota_openshift_io_v1_cluster_resource_quota_status | PATCH /apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status | |
| QuotaOpenshiftIoV1Api | read_quota_openshift_io_v1_cluster_resource_quota | GET /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | read_quota_openshift_io_v1_cluster_resource_quota_status | GET /apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status | |
| QuotaOpenshiftIoV1Api | read_quota_openshift_io_v1_namespaced_applied_cluster_resource_quota | GET /apis/quota.openshift.io/v1/namespaces/{namespace}/appliedclusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | replace_quota_openshift_io_v1_cluster_resource_quota | PUT /apis/quota.openshift.io/v1/clusterresourcequotas/{name} | |
| QuotaOpenshiftIoV1Api | replace_quota_openshift_io_v1_cluster_resource_quota_status | PUT /apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status | |
| RouteOpenshiftIoApi | get_route_openshift_io_api_group | GET /apis/route.openshift.io/ | |
| RouteOpenshiftIoV1Api | create_route_openshift_io_v1_namespaced_route | POST /apis/route.openshift.io/v1/namespaces/{namespace}/routes | |
| RouteOpenshiftIoV1Api | create_route_openshift_io_v1_route_for_all_namespaces | POST /apis/route.openshift.io/v1/routes | |
| RouteOpenshiftIoV1Api | delete_route_openshift_io_v1_collection_namespaced_route | DELETE /apis/route.openshift.io/v1/namespaces/{namespace}/routes | |
| RouteOpenshiftIoV1Api | delete_route_openshift_io_v1_namespaced_route | DELETE /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | get_route_openshift_io_v1_api_resources | GET /apis/route.openshift.io/v1/ | |
| RouteOpenshiftIoV1Api | list_route_openshift_io_v1_namespaced_route | GET /apis/route.openshift.io/v1/namespaces/{namespace}/routes | |
| RouteOpenshiftIoV1Api | list_route_openshift_io_v1_route_for_all_namespaces | GET /apis/route.openshift.io/v1/routes | |
| RouteOpenshiftIoV1Api | patch_route_openshift_io_v1_namespaced_route | PATCH /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | patch_route_openshift_io_v1_namespaced_route_status | PATCH /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name}/status | |
| RouteOpenshiftIoV1Api | read_route_openshift_io_v1_namespaced_route | GET /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | read_route_openshift_io_v1_namespaced_route_status | GET /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name}/status | |
| RouteOpenshiftIoV1Api | replace_route_openshift_io_v1_namespaced_route | PUT /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name} | |
| RouteOpenshiftIoV1Api | replace_route_openshift_io_v1_namespaced_route_status | PUT /apis/route.openshift.io/v1/namespaces/{namespace}/routes/{name}/status | |
| SecurityOpenshiftIoApi | get_security_openshift_io_api_group | GET /apis/security.openshift.io/ | |
| SecurityOpenshiftIoV1Api | create_security_openshift_io_v1_namespaced_pod_security_policy_review | POST /apis/security.openshift.io/v1/namespaces/{namespace}/podsecuritypolicyreviews | |
| SecurityOpenshiftIoV1Api | create_security_openshift_io_v1_namespaced_pod_security_policy_self_subject_review | POST /apis/security.openshift.io/v1/namespaces/{namespace}/podsecuritypolicyselfsubjectreviews | |
| SecurityOpenshiftIoV1Api | create_security_openshift_io_v1_namespaced_pod_security_policy_subject_review | POST /apis/security.openshift.io/v1/namespaces/{namespace}/podsecuritypolicysubjectreviews | |
| SecurityOpenshiftIoV1Api | create_security_openshift_io_v1_pod_security_policy_review_for_all_namespaces | POST /apis/security.openshift.io/v1/podsecuritypolicyreviews | |
| SecurityOpenshiftIoV1Api | create_security_openshift_io_v1_pod_security_policy_self_subject_review_for_all_namespaces | POST /apis/security.openshift.io/v1/podsecuritypolicyselfsubjectreviews | |
| SecurityOpenshiftIoV1Api | create_security_openshift_io_v1_pod_security_policy_subject_review_for_all_namespaces | POST /apis/security.openshift.io/v1/podsecuritypolicysubjectreviews | |
| SecurityOpenshiftIoV1Api | get_security_openshift_io_v1_api_resources | GET /apis/security.openshift.io/v1/ | |
| StorageApi | get_storage_api_group | GET /apis/storage.k8s.io/ | |
| 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_template_openshift_io_api_group | GET /apis/template.openshift.io/ | |
| TemplateOpenshiftIoV1Api | create_template_openshift_io_v1_namespaced_template | POST /apis/template.openshift.io/v1/namespaces/{namespace}/templates | |
| TemplateOpenshiftIoV1Api | create_template_openshift_io_v1_template_for_all_namespaces | POST /apis/template.openshift.io/v1/templates | |
| TemplateOpenshiftIoV1Api | delete_template_openshift_io_v1_collection_namespaced_template | DELETE /apis/template.openshift.io/v1/namespaces/{namespace}/templates | |
| TemplateOpenshiftIoV1Api | delete_template_openshift_io_v1_namespaced_template | DELETE /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| TemplateOpenshiftIoV1Api | get_template_openshift_io_v1_api_resources | GET /apis/template.openshift.io/v1/ | |
| TemplateOpenshiftIoV1Api | list_template_openshift_io_v1_namespaced_template | GET /apis/template.openshift.io/v1/namespaces/{namespace}/templates | |
| TemplateOpenshiftIoV1Api | list_template_openshift_io_v1_template_for_all_namespaces | GET /apis/template.openshift.io/v1/templates | |
| TemplateOpenshiftIoV1Api | patch_template_openshift_io_v1_namespaced_template | PATCH /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| TemplateOpenshiftIoV1Api | read_template_openshift_io_v1_namespaced_template | GET /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| TemplateOpenshiftIoV1Api | replace_template_openshift_io_v1_namespaced_template | PUT /apis/template.openshift.io/v1/namespaces/{namespace}/templates/{name} | |
| 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_user_openshift_io_api_group | GET /apis/user.openshift.io/ | |
| UserOpenshiftIoV1Api | create_user_openshift_io_v1_group | POST /apis/user.openshift.io/v1/groups | |
| UserOpenshiftIoV1Api | create_user_openshift_io_v1_identity | POST /apis/user.openshift.io/v1/identities | |
| UserOpenshiftIoV1Api | create_user_openshift_io_v1_user | POST /apis/user.openshift.io/v1/users | |
| UserOpenshiftIoV1Api | create_user_openshift_io_v1_user_identity_mapping | POST /apis/user.openshift.io/v1/useridentitymappings | |
| UserOpenshiftIoV1Api | delete_user_openshift_io_v1_collection_group | DELETE /apis/user.openshift.io/v1/groups | |
| UserOpenshiftIoV1Api | delete_user_openshift_io_v1_collection_identity | DELETE /apis/user.openshift.io/v1/identities | |
| UserOpenshiftIoV1Api | delete_user_openshift_io_v1_collection_user | DELETE /apis/user.openshift.io/v1/users | |
| UserOpenshiftIoV1Api | delete_user_openshift_io_v1_group | DELETE /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | delete_user_openshift_io_v1_identity | DELETE /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | delete_user_openshift_io_v1_user | DELETE /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | delete_user_openshift_io_v1_user_identity_mapping | DELETE /apis/user.openshift.io/v1/useridentitymappings/{name} | |
| UserOpenshiftIoV1Api | get_user_openshift_io_v1_api_resources | GET /apis/user.openshift.io/v1/ | |
| UserOpenshiftIoV1Api | list_user_openshift_io_v1_group | GET /apis/user.openshift.io/v1/groups | |
| UserOpenshiftIoV1Api | list_user_openshift_io_v1_identity | GET /apis/user.openshift.io/v1/identities | |
| UserOpenshiftIoV1Api | list_user_openshift_io_v1_user | GET /apis/user.openshift.io/v1/users | |
| UserOpenshiftIoV1Api | patch_user_openshift_io_v1_group | PATCH /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | patch_user_openshift_io_v1_identity | PATCH /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | patch_user_openshift_io_v1_user | PATCH /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | patch_user_openshift_io_v1_user_identity_mapping | PATCH /apis/user.openshift.io/v1/useridentitymappings/{name} | |
| UserOpenshiftIoV1Api | read_user_openshift_io_v1_group | GET /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | read_user_openshift_io_v1_identity | GET /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | read_user_openshift_io_v1_user | GET /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | read_user_openshift_io_v1_user_identity_mapping | GET /apis/user.openshift.io/v1/useridentitymappings/{name} | |
| UserOpenshiftIoV1Api | replace_user_openshift_io_v1_group | PUT /apis/user.openshift.io/v1/groups/{name} | |
| UserOpenshiftIoV1Api | replace_user_openshift_io_v1_identity | PUT /apis/user.openshift.io/v1/identities/{name} | |
| UserOpenshiftIoV1Api | replace_user_openshift_io_v1_user | PUT /apis/user.openshift.io/v1/users/{name} | |
| UserOpenshiftIoV1Api | replace_user_openshift_io_v1_user_identity_mapping | PUT /apis/user.openshift.io/v1/useridentitymappings/{name} | |
| VersionApi | get_code_version | GET /version/ |
- IntstrIntOrString
- ResourceQuantity
- RuntimeRawExtension
- UnversionedAPIGroup
- UnversionedAPIGroupList
- UnversionedAPIResource
- UnversionedAPIResourceList
- UnversionedAPIVersions
- UnversionedGroupVersionForDiscovery
- UnversionedLabelSelector
- UnversionedLabelSelectorRequirement
- UnversionedListMeta
- UnversionedServerAddressByClientCIDR
- UnversionedStatus
- UnversionedStatusCause
- UnversionedStatusDetails
- UnversionedTime
- V1AWSElasticBlockStoreVolumeSource
- V1AppliedClusterResourceQuota
- V1AppliedClusterResourceQuotaList
- V1AttachedVolume
- V1AzureDiskVolumeSource
- V1AzureFileVolumeSource
- V1BinaryBuildSource
- V1Binding
- V1Build
- V1BuildConfig
- V1BuildConfigList
- V1BuildConfigSpec
- V1BuildConfigStatus
- V1BuildList
- V1BuildLog
- V1BuildOutput
- V1BuildPostCommitSpec
- V1BuildRequest
- V1BuildSource
- V1BuildSpec
- V1BuildStatus
- V1BuildStatusOutput
- V1BuildStatusOutputTo
- V1BuildStrategy
- V1BuildTriggerCause
- V1BuildTriggerPolicy
- V1Capabilities
- V1CephFSVolumeSource
- V1CinderVolumeSource
- V1ClusterNetwork
- V1ClusterNetworkList
- V1ClusterPolicy
- V1ClusterPolicyBinding
- V1ClusterPolicyBindingList
- V1ClusterPolicyList
- V1ClusterResourceQuota
- V1ClusterResourceQuotaList
- V1ClusterResourceQuotaSelector
- V1ClusterResourceQuotaSpec
- V1ClusterResourceQuotaStatus
- V1ClusterRole
- V1ClusterRoleBinding
- V1ClusterRoleBindingList
- V1ClusterRoleList
- V1ClusterRoleScopeRestriction
- V1ComponentCondition
- V1ComponentStatus
- V1ComponentStatusList
- V1ConfigMap
- V1ConfigMapKeySelector
- V1ConfigMapList
- V1ConfigMapVolumeSource
- V1Container
- V1ContainerImage
- V1ContainerPort
- V1ContainerState
- V1ContainerStateRunning
- V1ContainerStateTerminated
- V1ContainerStateWaiting
- V1ContainerStatus
- V1CrossVersionObjectReference
- V1CustomBuildStrategy
- V1CustomDeploymentStrategyParams
- V1DaemonEndpoint
- V1DeleteOptions
- V1DeploymentCause
- V1DeploymentCauseImageTrigger
- V1DeploymentCondition
- V1DeploymentConfig
- V1DeploymentConfigList
- V1DeploymentConfigRollback
- V1DeploymentConfigRollbackSpec
- V1DeploymentConfigSpec
- V1DeploymentConfigStatus
- V1DeploymentDetails
- V1DeploymentLog
- V1DeploymentRequest
- V1DeploymentStrategy
- V1DeploymentTriggerImageChangeParams
- V1DeploymentTriggerPolicy
- V1DeprecatedDownwardAPIVolumeFile
- V1DeprecatedDownwardAPIVolumeSource
- V1DockerBuildStrategy
- V1DockerStrategyOptions
- V1DownwardAPIVolumeFile
- V1DownwardAPIVolumeSource
- V1EgressNetworkPolicy
- V1EgressNetworkPolicyList
- V1EgressNetworkPolicyPeer
- V1EgressNetworkPolicyRule
- V1EgressNetworkPolicySpec
- V1EmptyDirVolumeSource
- V1EndpointAddress
- V1EndpointPort
- V1EndpointSubset
- V1Endpoints
- V1EndpointsList
- V1EnvVar
- V1EnvVarSource
- V1Event
- V1EventList
- V1EventSource
- V1ExecAction
- V1ExecNewPodHook
- V1FCVolumeSource
- V1FSGroupStrategyOptions
- V1FlexVolumeSource
- V1FlockerVolumeSource
- V1GCEPersistentDiskVolumeSource
- V1GenericWebHookCause
- V1GitBuildSource
- V1GitHubWebHookCause
- V1GitRepoVolumeSource
- V1GitSourceRevision
- V1GlusterfsVolumeSource
- V1Group
- V1GroupList
- V1GroupRestriction
- V1HTTPGetAction
- V1HTTPHeader
- V1Handler
- V1HorizontalPodAutoscaler
- V1HorizontalPodAutoscalerList
- V1HorizontalPodAutoscalerSpec
- V1HorizontalPodAutoscalerStatus
- V1HostPathVolumeSource
- V1HostSubnet
- V1HostSubnetList
- V1IDRange
- V1ISCSIVolumeSource
- V1Identity
- V1IdentityList
- V1Image
- V1ImageChangeCause
- V1ImageChangeTrigger
- V1ImageImportSpec
- V1ImageImportStatus
- V1ImageLabel
- V1ImageLayer
- V1ImageList
- V1ImageSignature
- V1ImageSource
- V1ImageSourcePath
- V1ImageStream
- V1ImageStreamImage
- V1ImageStreamImport
- V1ImageStreamImportSpec
- V1ImageStreamImportStatus
- V1ImageStreamList
- V1ImageStreamMapping
- V1ImageStreamSpec
- V1ImageStreamStatus
- V1ImageStreamTag
- V1ImageStreamTagList
- V1JenkinsPipelineBuildStrategy
- V1Job
- V1JobCondition
- V1JobList
- V1JobSpec
- V1JobStatus
- V1KeyToPath
- V1Lifecycle
- V1LifecycleHook
- V1LimitRange
- V1LimitRangeItem
- V1LimitRangeList
- V1LimitRangeSpec
- V1LoadBalancerIngress
- V1LoadBalancerStatus
- V1LocalObjectReference
- V1LocalResourceAccessReview
- V1LocalSubjectAccessReview
- V1NFSVolumeSource
- V1NamedClusterRole
- V1NamedClusterRoleBinding
- V1NamedRole
- V1NamedRoleBinding
- V1NamedTagEventList
- V1Namespace
- V1NamespaceList
- V1NamespaceSpec
- V1NamespaceStatus
- V1NetNamespace
- V1NetNamespaceList
- V1Node
- V1NodeAddress
- V1NodeCondition
- V1NodeDaemonEndpoints
- V1NodeList
- V1NodeSpec
- V1NodeStatus
- V1NodeSystemInfo
- V1OAuthAccessToken
- V1OAuthAccessTokenList
- V1OAuthAuthorizeToken
- V1OAuthAuthorizeTokenList
- V1OAuthClient
- V1OAuthClientAuthorization
- V1OAuthClientAuthorizationList
- V1OAuthClientList
- V1ObjectFieldSelector
- V1ObjectMeta
- V1ObjectReference
- V1OwnerReference
- V1Parameter
- V1PersistentVolume
- V1PersistentVolumeClaim
- V1PersistentVolumeClaimList
- V1PersistentVolumeClaimSpec
- V1PersistentVolumeClaimStatus
- V1PersistentVolumeClaimVolumeSource
- V1PersistentVolumeList
- V1PersistentVolumeSpec
- V1PersistentVolumeStatus
- V1PhotonPersistentDiskVolumeSource
- V1Pod
- V1PodCondition
- V1PodList
- V1PodSecurityContext
- V1PodSecurityPolicyReview
- V1PodSecurityPolicyReviewSpec
- V1PodSecurityPolicyReviewStatus
- V1PodSecurityPolicySelfSubjectReview
- V1PodSecurityPolicySelfSubjectReviewSpec
- V1PodSecurityPolicySubjectReview
- V1PodSecurityPolicySubjectReviewSpec
- V1PodSecurityPolicySubjectReviewStatus
- V1PodSpec
- V1PodStatus
- V1PodTemplate
- V1PodTemplateList
- V1PodTemplateSpec
- V1Policy
- V1PolicyBinding
- V1PolicyBindingList
- V1PolicyList
- V1PolicyRule
- V1Preconditions
- V1Probe
- V1Project
- V1ProjectList
- V1ProjectRequest
- V1ProjectSpec
- V1ProjectStatus
- V1QuobyteVolumeSource
- V1RBDVolumeSource
- V1RecreateDeploymentStrategyParams
- V1ReplicationController
- V1ReplicationControllerCondition
- V1ReplicationControllerList
- V1ReplicationControllerSpec
- V1ReplicationControllerStatus
- V1RepositoryImportSpec
- V1RepositoryImportStatus
- V1ResourceAccessReview
- V1ResourceFieldSelector
- V1ResourceQuota
- V1ResourceQuotaList
- V1ResourceQuotaSpec
- V1ResourceQuotaStatus
- V1ResourceQuotaStatusByNamespace
- V1ResourceRequirements
- V1Role
- V1RoleBinding
- V1RoleBindingList
- V1RoleBindingRestriction
- V1RoleBindingRestrictionList
- V1RoleBindingRestrictionSpec
- V1RoleList
- V1RollingDeploymentStrategyParams
- V1Route
- V1RouteIngress
- V1RouteIngressCondition
- V1RouteList
- V1RoutePort
- V1RouteSpec
- V1RouteStatus
- V1RouteTargetReference
- V1RunAsUserStrategyOptions
- V1SELinuxContextStrategyOptions
- V1SELinuxOptions
- V1Scale
- V1ScaleSpec
- V1ScaleStatus
- V1ScopeRestriction
- V1Secret
- V1SecretBuildSource
- V1SecretKeySelector
- V1SecretList
- V1SecretSpec
- V1SecretVolumeSource
- V1SecurityContext
- V1SecurityContextConstraints
- V1SecurityContextConstraintsList
- V1SelfSubjectRulesReview
- V1SelfSubjectRulesReviewSpec
- V1Service
- V1ServiceAccount
- V1ServiceAccountList
- V1ServiceAccountPodSecurityPolicyReviewStatus
- V1ServiceAccountReference
- V1ServiceAccountRestriction
- V1ServiceList
- V1ServicePort
- V1ServiceSpec
- V1ServiceStatus
- V1SignatureCondition
- V1SignatureIssuer
- V1SignatureSubject
- V1SourceBuildStrategy
- V1SourceControlUser
- V1SourceRevision
- V1SubjectAccessReview
- V1SubjectRulesReview
- V1SubjectRulesReviewSpec
- V1SubjectRulesReviewStatus
- V1SupplementalGroupsStrategyOptions
- V1TCPSocketAction
- V1TLSConfig
- V1TagEvent
- V1TagEventCondition
- V1TagImageHook
- V1TagImportPolicy
- V1TagReference
- V1TagReferencePolicy
- V1Template
- V1TemplateList
- V1User
- V1UserIdentityMapping
- V1UserList
- V1UserRestriction
- V1Volume
- V1VolumeMount
- V1VsphereVirtualDiskVolumeSource
- V1WebHookTrigger
- V1alpha1CertificateSigningRequest
- V1alpha1CertificateSigningRequestCondition
- V1alpha1CertificateSigningRequestList
- V1alpha1CertificateSigningRequestSpec
- V1alpha1CertificateSigningRequestStatus
- V1beta1APIVersion
- V1beta1CPUTargetUtilization
- V1beta1DaemonSet
- V1beta1DaemonSetList
- V1beta1DaemonSetSpec
- V1beta1DaemonSetStatus
- V1beta1Deployment
- V1beta1DeploymentCondition
- V1beta1DeploymentList
- V1beta1DeploymentRollback
- V1beta1DeploymentSpec
- V1beta1DeploymentStatus
- V1beta1DeploymentStrategy
- V1beta1Eviction
- V1beta1FSGroupStrategyOptions
- V1beta1HTTPIngressPath
- V1beta1HTTPIngressRuleValue
- V1beta1HorizontalPodAutoscaler
- V1beta1HorizontalPodAutoscalerList
- V1beta1HorizontalPodAutoscalerSpec
- V1beta1HorizontalPodAutoscalerStatus
- V1beta1HostPortRange
- V1beta1IDRange
- V1beta1Ingress
- V1beta1IngressBackend
- V1beta1IngressList
- V1beta1IngressRule
- V1beta1IngressSpec
- V1beta1IngressStatus
- V1beta1IngressTLS
- V1beta1Job
- V1beta1JobCondition
- V1beta1JobList
- V1beta1JobSpec
- V1beta1JobStatus
- V1beta1LocalSubjectAccessReview
- V1beta1NetworkPolicy
- V1beta1NetworkPolicyIngressRule
- V1beta1NetworkPolicyList
- V1beta1NetworkPolicyPeer
- V1beta1NetworkPolicyPort
- V1beta1NetworkPolicySpec
- V1beta1NonResourceAttributes
- V1beta1PodDisruptionBudget
- V1beta1PodDisruptionBudgetList
- V1beta1PodDisruptionBudgetSpec
- V1beta1PodDisruptionBudgetStatus
- V1beta1PodSecurityPolicy
- V1beta1PodSecurityPolicyList
- V1beta1PodSecurityPolicySpec
- V1beta1ReplicaSet
- V1beta1ReplicaSetCondition
- V1beta1ReplicaSetList
- V1beta1ReplicaSetSpec
- V1beta1ReplicaSetStatus
- V1beta1ResourceAttributes
- V1beta1RollbackConfig
- V1beta1RollingUpdateDeployment
- V1beta1RunAsUserStrategyOptions
- V1beta1SELinuxStrategyOptions
- V1beta1Scale
- V1beta1ScaleSpec
- V1beta1ScaleStatus
- V1beta1SelfSubjectAccessReview
- V1beta1SelfSubjectAccessReviewSpec
- V1beta1StatefulSet
- V1beta1StatefulSetList
- V1beta1StatefulSetSpec
- V1beta1StatefulSetStatus
- V1beta1StorageClass
- V1beta1StorageClassList
- V1beta1SubjectAccessReview
- V1beta1SubjectAccessReviewSpec
- V1beta1SubjectAccessReviewStatus
- V1beta1SubresourceReference
- V1beta1SupplementalGroupsStrategyOptions
- V1beta1ThirdPartyResource
- V1beta1ThirdPartyResourceList
- V1beta1TokenReview
- V1beta1TokenReviewSpec
- V1beta1TokenReviewStatus
- V1beta1UserInfo
- V2alpha1CronJob
- V2alpha1CronJobList
- V2alpha1CronJobSpec
- V2alpha1CronJobStatus
- V2alpha1Job
- V2alpha1JobCondition
- V2alpha1JobList
- V2alpha1JobSpec
- V2alpha1JobStatus
- V2alpha1JobTemplateSpec
- VersionInfo
- VersionedEvent
All endpoints do not require authorization.