REST API Reference
OpenShift Container Platform 3.4 REST API for Developers
Abstract
The OpenShift Container Platform 3.4 distribution of Kubernetes includes the Kubernetes v1 REST API and the OpenShift v1 REST API. These are RESTful APIs accessible via HTTP(s) on the OpenShift Container Platform master servers.
These REST APIs can be used to manage end-user applications, the cluster, and the users of the cluster.
Chapter 1. Overview Copy linkLink copied to clipboard!
The OpenShift Container Platform distribution of Kubernetes includes the Kubernetes v1 REST API and the OpenShift v1 REST API. These are RESTful APIs accessible via HTTP(s) on the OpenShift Container Platform master servers.
These REST APIs can be used to manage end-user applications, the cluster, and the users of the cluster.
1.1. Authentication Copy linkLink copied to clipboard!
API calls must be authenticated with an access token or X.509 certificate. See Authentication in the Architecture documentation for an overview.
This section highlights the token authentication method. With token authentication, a bearer token must be passed in as an HTTP Authorization header. There are two types of access tokens: session and service account.
1.1.1. Session Tokens Copy linkLink copied to clipboard!
A session token is short-lived, expiring within 24 hours by default. It represents a user. After logging in, the session token may be obtained with the oc whoami command:
oc login -u test_user Using project "test". oc whoami --token dIAo76N-W-GXK3S_w_KsC6DmH3MzP79zq7jbMQvCOUo
$ oc login -u test_user
Using project "test".
$ oc whoami --token
dIAo76N-W-GXK3S_w_KsC6DmH3MzP79zq7jbMQvCOUo
1.1.2. Service Account Tokens Copy linkLink copied to clipboard!
Service account tokens are long-lived tokens. They are JSON Web Token (JWT) formatted tokens and are much longer strings than session tokens. See Using a Service Account’s Credentials Externally for steps on using these tokens to authenticate using the CLI.
A service account token may be obtained with these commands:
Create a service account in the current project (test) named robot:
oc create serviceaccount robot serviceaccount "robot" created
$ oc create serviceaccount robot serviceaccount "robot" createdCopy to Clipboard Copied! Toggle word wrap Toggle overflow Grant a role to the service account. In this example, assign the robot service account in the test project the admin role:
oc policy add-role-to-user admin system:serviceaccount:test:robot
$ oc policy add-role-to-user admin system:serviceaccount:test:robotCopy to Clipboard Copied! Toggle word wrap Toggle overflow Describe the service account to discover the secret token name:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Describe the secret token to get the token value:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
The token value may be used in an authorization header to authenticate API calls, the CLI or in the docker login command. Service accounts may be created and deleted as needed with the appropriate role(s) assigned. See Authorization in the Architecture documentation for a deeper discussion on roles.
1.2. Examples Copy linkLink copied to clipboard!
These examples provide a quick reference for making successful REST API calls. They use insecure methods. In these examples, a simple GET call is made to list available resources.
1.2.1. cURL Copy linkLink copied to clipboard!
Example 1.1. Request (Insecure)
curl -X GET -H "Authorization: Bearer <token>" https://openshift.redhat.com:8443/oapi/v1 --insecure
$ curl -X GET -H "Authorization: Bearer <token>" https://openshift.redhat.com:8443/oapi/v1 --insecure
Example 1.2. Result (Truncated)
1.2.2. Python Copy linkLink copied to clipboard!
Example 1.3. Interactive Python API Call Using "requests" Module (Insecure)
1.2.3. Docker Login Copy linkLink copied to clipboard!
The OpenShift Container Platform integrated Docker registry must be authenticated using either a user session or service account token. The value of the token must be used as the value for the --password argument. The user and email argument values are ignored:
docker login -p <token_value> -u unused -e unused <registry>[:<port>]
$ docker login -p <token_value> -u unused -e unused <registry>[:<port>]
1.3. Image Signatures Copy linkLink copied to clipboard!
The OpenShift Container Registry allows the users to manipulate the image signatures using its own API. See Reading and Writing Image Signatures for more information.
1.4. Websockets and Watching for Changes Copy linkLink copied to clipboard!
The API is designed to work via the websocket protocol. API requests may take the form of "one-shot" calls to list resources or by passing in query parameter watch=true. When watching an endpoint, changes to the system may be observed through an open endpoint. Using callbacks, dynamic systems may be developed that integrate with the API.
For more information and examples, see the Mozilla Developer Network page on Writing WebSocket client applications.
Chapter 2. OpenShift Container Platform v1 REST API Copy linkLink copied to clipboard!
2.1. Overview Copy linkLink copied to clipboard!
The OpenShift Container Platform API exposes operations for managing an enterprise Kubernetes cluster, including security and user management, application deployments, image and source builds, HTTP(s) routing, and project management.
2.1.1. Version information Copy linkLink copied to clipboard!
Version: v1
2.1.2. URI scheme Copy linkLink copied to clipboard!
Host: 127.0.0.1:8443 BasePath: / Schemes: HTTPS
2.2. Paths Copy linkLink copied to clipboard!
2.2.1. get available resources Copy linkLink copied to clipboard!
GET /oapi/v1
GET /oapi/v1
2.2.1.1. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| default | success |
2.2.1.2. Consumes Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.1.3. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.1.4. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.2. list objects of kind AppliedClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/appliedclusterresourcequotas
GET /oapi/v1/appliedclusterresourcequotas
2.2.2.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.2.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.2.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.2.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.2.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.3. create a BuildConfig Copy linkLink copied to clipboard!
POST /oapi/v1/buildconfigs
POST /oapi/v1/buildconfigs
2.2.3.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.3.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.3.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.3.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.3.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.4. list or watch objects of kind BuildConfig Copy linkLink copied to clipboard!
GET /oapi/v1/buildconfigs
GET /oapi/v1/buildconfigs
2.2.4.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.4.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.4.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.4.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.4.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.5. create a Build Copy linkLink copied to clipboard!
POST /oapi/v1/builds
POST /oapi/v1/builds
2.2.5.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.5.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.5.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.5.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.5.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.6. list or watch objects of kind Build Copy linkLink copied to clipboard!
GET /oapi/v1/builds
GET /oapi/v1/builds
2.2.6.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.6.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.6.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.6.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.6.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.7. delete collection of ClusterNetwork Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusternetworks
DELETE /oapi/v1/clusternetworks
2.2.7.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.7.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.7.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.7.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.7.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.8. create a ClusterNetwork Copy linkLink copied to clipboard!
POST /oapi/v1/clusternetworks
POST /oapi/v1/clusternetworks
2.2.8.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.8.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.8.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.8.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.8.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.9. list or watch objects of kind ClusterNetwork Copy linkLink copied to clipboard!
GET /oapi/v1/clusternetworks
GET /oapi/v1/clusternetworks
2.2.9.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.9.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.9.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.9.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.9.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.10. replace the specified ClusterNetwork Copy linkLink copied to clipboard!
PUT /oapi/v1/clusternetworks/{name}
PUT /oapi/v1/clusternetworks/{name}
2.2.10.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterNetwork | true | string |
2.2.10.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.10.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.10.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.10.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.11. delete a ClusterNetwork Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusternetworks/{name}
DELETE /oapi/v1/clusternetworks/{name}
2.2.11.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterNetwork | true | string |
2.2.11.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.11.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.11.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.11.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.12. partially update the specified ClusterNetwork Copy linkLink copied to clipboard!
PATCH /oapi/v1/clusternetworks/{name}
PATCH /oapi/v1/clusternetworks/{name}
2.2.12.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterNetwork | true | string |
2.2.12.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.12.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.12.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.12.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.13. read the specified ClusterNetwork Copy linkLink copied to clipboard!
GET /oapi/v1/clusternetworks/{name}
GET /oapi/v1/clusternetworks/{name}
2.2.13.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the ClusterNetwork | true | string |
2.2.13.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.13.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.13.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.13.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.14. delete collection of ClusterPolicy Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterpolicies
DELETE /oapi/v1/clusterpolicies
2.2.14.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.14.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.14.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.14.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.14.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.15. create a ClusterPolicy Copy linkLink copied to clipboard!
POST /oapi/v1/clusterpolicies
POST /oapi/v1/clusterpolicies
2.2.15.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.15.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.15.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.15.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.15.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.16. list or watch objects of kind ClusterPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/clusterpolicies
GET /oapi/v1/clusterpolicies
2.2.16.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.16.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.16.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.16.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.16.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.17. replace the specified ClusterPolicy Copy linkLink copied to clipboard!
PUT /oapi/v1/clusterpolicies/{name}
PUT /oapi/v1/clusterpolicies/{name}
2.2.17.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterPolicy | true | string |
2.2.17.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.17.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.17.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.17.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.18. delete a ClusterPolicy Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterpolicies/{name}
DELETE /oapi/v1/clusterpolicies/{name}
2.2.18.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterPolicy | true | string |
2.2.18.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.18.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.18.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.18.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.19. partially update the specified ClusterPolicy Copy linkLink copied to clipboard!
PATCH /oapi/v1/clusterpolicies/{name}
PATCH /oapi/v1/clusterpolicies/{name}
2.2.19.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterPolicy | true | string |
2.2.19.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.19.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.19.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.19.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.20. read the specified ClusterPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/clusterpolicies/{name}
GET /oapi/v1/clusterpolicies/{name}
2.2.20.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the ClusterPolicy | true | string |
2.2.20.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.20.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.20.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.20.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.21. delete collection of ClusterPolicyBinding Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterpolicybindings
DELETE /oapi/v1/clusterpolicybindings
2.2.21.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.21.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.21.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.21.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.21.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.22. create a ClusterPolicyBinding Copy linkLink copied to clipboard!
POST /oapi/v1/clusterpolicybindings
POST /oapi/v1/clusterpolicybindings
2.2.22.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.22.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.22.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.22.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.22.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.23. list or watch objects of kind ClusterPolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/clusterpolicybindings
GET /oapi/v1/clusterpolicybindings
2.2.23.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.23.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.23.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.23.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.23.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.24. replace the specified ClusterPolicyBinding Copy linkLink copied to clipboard!
PUT /oapi/v1/clusterpolicybindings/{name}
PUT /oapi/v1/clusterpolicybindings/{name}
2.2.24.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterPolicyBinding | true | string |
2.2.24.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.24.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.24.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.24.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.25. delete a ClusterPolicyBinding Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterpolicybindings/{name}
DELETE /oapi/v1/clusterpolicybindings/{name}
2.2.25.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterPolicyBinding | true | string |
2.2.25.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.25.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.25.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.25.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.26. partially update the specified ClusterPolicyBinding Copy linkLink copied to clipboard!
PATCH /oapi/v1/clusterpolicybindings/{name}
PATCH /oapi/v1/clusterpolicybindings/{name}
2.2.26.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterPolicyBinding | true | string |
2.2.26.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.26.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.26.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.26.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.27. read the specified ClusterPolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/clusterpolicybindings/{name}
GET /oapi/v1/clusterpolicybindings/{name}
2.2.27.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the ClusterPolicyBinding | true | string |
2.2.27.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.27.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.27.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.27.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.28. delete collection of ClusterResourceQuota Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterresourcequotas
DELETE /oapi/v1/clusterresourcequotas
2.2.28.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.28.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.28.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.28.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.28.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.29. create a ClusterResourceQuota Copy linkLink copied to clipboard!
POST /oapi/v1/clusterresourcequotas
POST /oapi/v1/clusterresourcequotas
2.2.29.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.29.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.29.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.29.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.29.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.30. list or watch objects of kind ClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/clusterresourcequotas
GET /oapi/v1/clusterresourcequotas
2.2.30.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.30.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.30.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.30.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.30.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.31. replace the specified ClusterResourceQuota Copy linkLink copied to clipboard!
PUT /oapi/v1/clusterresourcequotas/{name}
PUT /oapi/v1/clusterresourcequotas/{name}
2.2.31.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.31.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.31.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.31.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.31.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.32. delete a ClusterResourceQuota Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterresourcequotas/{name}
DELETE /oapi/v1/clusterresourcequotas/{name}
2.2.32.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.32.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.32.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.32.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.32.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.33. partially update the specified ClusterResourceQuota Copy linkLink copied to clipboard!
PATCH /oapi/v1/clusterresourcequotas/{name}
PATCH /oapi/v1/clusterresourcequotas/{name}
2.2.33.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.33.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.33.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.33.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.33.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.34. read the specified ClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/clusterresourcequotas/{name}
GET /oapi/v1/clusterresourcequotas/{name}
2.2.34.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.34.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.34.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.34.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.34.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.35. replace status of the specified ClusterResourceQuota Copy linkLink copied to clipboard!
PUT /oapi/v1/clusterresourcequotas/{name}/status
PUT /oapi/v1/clusterresourcequotas/{name}/status
2.2.35.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.35.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.35.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.35.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.35.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.36. partially update status of the specified ClusterResourceQuota Copy linkLink copied to clipboard!
PATCH /oapi/v1/clusterresourcequotas/{name}/status
PATCH /oapi/v1/clusterresourcequotas/{name}/status
2.2.36.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.36.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.36.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.36.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.36.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.37. read status of the specified ClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/clusterresourcequotas/{name}/status
GET /oapi/v1/clusterresourcequotas/{name}/status
2.2.37.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.37.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.37.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.37.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.37.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.38. create a ClusterRoleBinding Copy linkLink copied to clipboard!
POST /oapi/v1/clusterrolebindings
POST /oapi/v1/clusterrolebindings
2.2.38.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.38.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.38.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.38.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.38.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.39. list objects of kind ClusterRoleBinding Copy linkLink copied to clipboard!
GET /oapi/v1/clusterrolebindings
GET /oapi/v1/clusterrolebindings
2.2.39.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.39.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.39.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.39.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.39.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.40. replace the specified ClusterRoleBinding Copy linkLink copied to clipboard!
PUT /oapi/v1/clusterrolebindings/{name}
PUT /oapi/v1/clusterrolebindings/{name}
2.2.40.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterRoleBinding | true | string |
2.2.40.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.40.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.40.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.40.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.41. delete a ClusterRoleBinding Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterrolebindings/{name}
DELETE /oapi/v1/clusterrolebindings/{name}
2.2.41.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterRoleBinding | true | string |
2.2.41.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.41.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.41.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.41.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.42. partially update the specified ClusterRoleBinding Copy linkLink copied to clipboard!
PATCH /oapi/v1/clusterrolebindings/{name}
PATCH /oapi/v1/clusterrolebindings/{name}
2.2.42.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterRoleBinding | true | string |
2.2.42.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.42.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.42.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.42.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.43. read the specified ClusterRoleBinding Copy linkLink copied to clipboard!
GET /oapi/v1/clusterrolebindings/{name}
GET /oapi/v1/clusterrolebindings/{name}
2.2.43.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the ClusterRoleBinding | true | string |
2.2.43.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.43.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.43.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.43.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.44. create a ClusterRole Copy linkLink copied to clipboard!
POST /oapi/v1/clusterroles
POST /oapi/v1/clusterroles
2.2.44.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.44.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.44.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.44.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.44.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.45. list objects of kind ClusterRole Copy linkLink copied to clipboard!
GET /oapi/v1/clusterroles
GET /oapi/v1/clusterroles
2.2.45.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.45.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.45.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.45.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.45.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.46. replace the specified ClusterRole Copy linkLink copied to clipboard!
PUT /oapi/v1/clusterroles/{name}
PUT /oapi/v1/clusterroles/{name}
2.2.46.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterRole | true | string |
2.2.46.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.46.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.46.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.46.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.47. delete a ClusterRole Copy linkLink copied to clipboard!
DELETE /oapi/v1/clusterroles/{name}
DELETE /oapi/v1/clusterroles/{name}
2.2.47.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterRole | true | string |
2.2.47.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.47.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.47.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.47.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.48. partially update the specified ClusterRole Copy linkLink copied to clipboard!
PATCH /oapi/v1/clusterroles/{name}
PATCH /oapi/v1/clusterroles/{name}
2.2.48.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the ClusterRole | true | string |
2.2.48.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.48.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.48.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.48.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.49. read the specified ClusterRole Copy linkLink copied to clipboard!
GET /oapi/v1/clusterroles/{name}
GET /oapi/v1/clusterroles/{name}
2.2.49.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the ClusterRole | true | string |
2.2.49.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.49.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.49.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.49.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.50. create a DeploymentConfigRollback Copy linkLink copied to clipboard!
POST /oapi/v1/deploymentconfigrollbacks
POST /oapi/v1/deploymentconfigrollbacks
2.2.50.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.50.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.50.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.50.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.50.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.51. create a DeploymentConfig Copy linkLink copied to clipboard!
POST /oapi/v1/deploymentconfigs
POST /oapi/v1/deploymentconfigs
2.2.51.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.51.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.51.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.51.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.51.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.52. list or watch objects of kind DeploymentConfig Copy linkLink copied to clipboard!
GET /oapi/v1/deploymentconfigs
GET /oapi/v1/deploymentconfigs
2.2.52.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.52.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.52.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.52.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.52.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.53. create a EgressNetworkPolicy Copy linkLink copied to clipboard!
POST /oapi/v1/egressnetworkpolicies
POST /oapi/v1/egressnetworkpolicies
2.2.53.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.53.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.53.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.53.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.53.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.54. list or watch objects of kind EgressNetworkPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/egressnetworkpolicies
GET /oapi/v1/egressnetworkpolicies
2.2.54.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.54.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.54.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.54.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.54.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.55. delete collection of Group Copy linkLink copied to clipboard!
DELETE /oapi/v1/groups
DELETE /oapi/v1/groups
2.2.55.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.55.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.55.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.55.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.55.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.56. create a Group Copy linkLink copied to clipboard!
POST /oapi/v1/groups
POST /oapi/v1/groups
2.2.56.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.56.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.56.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.56.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.56.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.57. list or watch objects of kind Group Copy linkLink copied to clipboard!
GET /oapi/v1/groups
GET /oapi/v1/groups
2.2.57.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.57.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.57.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.57.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.57.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.58. replace the specified Group Copy linkLink copied to clipboard!
PUT /oapi/v1/groups/{name}
PUT /oapi/v1/groups/{name}
2.2.58.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Group | true | string |
2.2.58.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.58.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.58.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.58.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.59. delete a Group Copy linkLink copied to clipboard!
DELETE /oapi/v1/groups/{name}
DELETE /oapi/v1/groups/{name}
2.2.59.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Group | true | string |
2.2.59.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.59.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.59.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.59.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.60. partially update the specified Group Copy linkLink copied to clipboard!
PATCH /oapi/v1/groups/{name}
PATCH /oapi/v1/groups/{name}
2.2.60.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Group | true | string |
2.2.60.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.60.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.60.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.60.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.61. read the specified Group Copy linkLink copied to clipboard!
GET /oapi/v1/groups/{name}
GET /oapi/v1/groups/{name}
2.2.61.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the Group | true | string |
2.2.61.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.61.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.61.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.61.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.62. delete collection of HostSubnet Copy linkLink copied to clipboard!
DELETE /oapi/v1/hostsubnets
DELETE /oapi/v1/hostsubnets
2.2.62.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.62.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.62.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.62.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.62.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.63. create a HostSubnet Copy linkLink copied to clipboard!
POST /oapi/v1/hostsubnets
POST /oapi/v1/hostsubnets
2.2.63.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.63.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.63.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.63.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.63.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.64. list or watch objects of kind HostSubnet Copy linkLink copied to clipboard!
GET /oapi/v1/hostsubnets
GET /oapi/v1/hostsubnets
2.2.64.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.64.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.64.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.64.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.64.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.65. replace the specified HostSubnet Copy linkLink copied to clipboard!
PUT /oapi/v1/hostsubnets/{name}
PUT /oapi/v1/hostsubnets/{name}
2.2.65.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the HostSubnet | true | string |
2.2.65.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.65.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.65.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.65.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.66. delete a HostSubnet Copy linkLink copied to clipboard!
DELETE /oapi/v1/hostsubnets/{name}
DELETE /oapi/v1/hostsubnets/{name}
2.2.66.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the HostSubnet | true | string |
2.2.66.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.66.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.66.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.66.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.67. partially update the specified HostSubnet Copy linkLink copied to clipboard!
PATCH /oapi/v1/hostsubnets/{name}
PATCH /oapi/v1/hostsubnets/{name}
2.2.67.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the HostSubnet | true | string |
2.2.67.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.67.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.67.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.67.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.68. read the specified HostSubnet Copy linkLink copied to clipboard!
GET /oapi/v1/hostsubnets/{name}
GET /oapi/v1/hostsubnets/{name}
2.2.68.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the HostSubnet | true | string |
2.2.68.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.68.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.68.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.68.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.69. delete collection of Identity Copy linkLink copied to clipboard!
DELETE /oapi/v1/identities
DELETE /oapi/v1/identities
2.2.69.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.69.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.69.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.69.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.69.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.70. create a Identity Copy linkLink copied to clipboard!
POST /oapi/v1/identities
POST /oapi/v1/identities
2.2.70.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.70.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.70.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.70.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.70.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.71. list or watch objects of kind Identity Copy linkLink copied to clipboard!
GET /oapi/v1/identities
GET /oapi/v1/identities
2.2.71.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.71.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.71.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.71.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.71.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.72. replace the specified Identity Copy linkLink copied to clipboard!
PUT /oapi/v1/identities/{name}
PUT /oapi/v1/identities/{name}
2.2.72.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Identity | true | string |
2.2.72.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.72.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.72.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.72.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.73. delete a Identity Copy linkLink copied to clipboard!
DELETE /oapi/v1/identities/{name}
DELETE /oapi/v1/identities/{name}
2.2.73.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Identity | true | string |
2.2.73.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.73.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.73.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.73.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.74. partially update the specified Identity Copy linkLink copied to clipboard!
PATCH /oapi/v1/identities/{name}
PATCH /oapi/v1/identities/{name}
2.2.74.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Identity | true | string |
2.2.74.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.74.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.74.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.74.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.75. read the specified Identity Copy linkLink copied to clipboard!
GET /oapi/v1/identities/{name}
GET /oapi/v1/identities/{name}
2.2.75.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the Identity | true | string |
2.2.75.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.75.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.75.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.75.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.76. delete collection of Image Copy linkLink copied to clipboard!
DELETE /oapi/v1/images
DELETE /oapi/v1/images
2.2.76.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.76.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.76.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.76.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.76.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.77. create a Image Copy linkLink copied to clipboard!
POST /oapi/v1/images
POST /oapi/v1/images
2.2.77.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.77.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.77.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.77.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.77.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.78. list or watch objects of kind Image Copy linkLink copied to clipboard!
GET /oapi/v1/images
GET /oapi/v1/images
2.2.78.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.78.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.78.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.78.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.78.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.79. replace the specified Image Copy linkLink copied to clipboard!
PUT /oapi/v1/images/{name}
PUT /oapi/v1/images/{name}
2.2.79.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Image | true | string |
2.2.79.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.79.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.79.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.79.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.80. delete a Image Copy linkLink copied to clipboard!
DELETE /oapi/v1/images/{name}
DELETE /oapi/v1/images/{name}
2.2.80.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Image | true | string |
2.2.80.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.80.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.80.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.80.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.81. partially update the specified Image Copy linkLink copied to clipboard!
PATCH /oapi/v1/images/{name}
PATCH /oapi/v1/images/{name}
2.2.81.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Image | true | string |
2.2.81.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.81.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.81.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.81.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.82. read the specified Image Copy linkLink copied to clipboard!
GET /oapi/v1/images/{name}
GET /oapi/v1/images/{name}
2.2.82.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the Image | true | string |
2.2.82.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.82.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.82.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.82.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.83. create a ImageSignature Copy linkLink copied to clipboard!
POST /oapi/v1/imagesignatures
POST /oapi/v1/imagesignatures
2.2.83.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.83.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.83.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.83.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.83.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.84. delete a ImageSignature Copy linkLink copied to clipboard!
DELETE /oapi/v1/imagesignatures/{name}
DELETE /oapi/v1/imagesignatures/{name}
2.2.84.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the ImageSignature | true | string |
2.2.84.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.84.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.84.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.84.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.85. create a ImageStreamImport Copy linkLink copied to clipboard!
POST /oapi/v1/imagestreamimports
POST /oapi/v1/imagestreamimports
2.2.85.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.85.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.85.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.85.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.85.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.86. create a ImageStreamMapping Copy linkLink copied to clipboard!
POST /oapi/v1/imagestreammappings
POST /oapi/v1/imagestreammappings
2.2.86.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.86.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.86.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.86.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.86.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.87. create a ImageStream Copy linkLink copied to clipboard!
POST /oapi/v1/imagestreams
POST /oapi/v1/imagestreams
2.2.87.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.87.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.87.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.87.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.87.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.88. list or watch objects of kind ImageStream Copy linkLink copied to clipboard!
GET /oapi/v1/imagestreams
GET /oapi/v1/imagestreams
2.2.88.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.88.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.88.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.88.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.88.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.89. create a ImageStreamTag Copy linkLink copied to clipboard!
POST /oapi/v1/imagestreamtags
POST /oapi/v1/imagestreamtags
2.2.89.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.89.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.89.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.89.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.89.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.90. list objects of kind ImageStreamTag Copy linkLink copied to clipboard!
GET /oapi/v1/imagestreamtags
GET /oapi/v1/imagestreamtags
2.2.90.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.90.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.90.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.90.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.90.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.91. create a LocalResourceAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/localresourceaccessreviews
POST /oapi/v1/localresourceaccessreviews
2.2.91.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.91.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.91.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.91.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.91.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.92. create a LocalSubjectAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/localsubjectaccessreviews
POST /oapi/v1/localsubjectaccessreviews
2.2.92.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.92.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.92.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.92.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.92.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.93. list objects of kind AppliedClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/appliedclusterresourcequotas
GET /oapi/v1/namespaces/{namespace}/appliedclusterresourcequotas
2.2.93.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.93.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.93.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.93.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.93.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.94. read the specified AppliedClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/appliedclusterresourcequotas/{name}
GET /oapi/v1/namespaces/{namespace}/appliedclusterresourcequotas/{name}
2.2.94.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the AppliedClusterResourceQuota | true | string |
2.2.94.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.94.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.94.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.94.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.95. delete collection of BuildConfig Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/buildconfigs
DELETE /oapi/v1/namespaces/{namespace}/buildconfigs
2.2.95.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.95.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.95.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.95.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.95.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.96. create a BuildConfig Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/buildconfigs
POST /oapi/v1/namespaces/{namespace}/buildconfigs
2.2.96.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.96.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.96.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.96.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.96.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.97. list or watch objects of kind BuildConfig Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/buildconfigs
GET /oapi/v1/namespaces/{namespace}/buildconfigs
2.2.97.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.97.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.97.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.97.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.97.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.98. replace the specified BuildConfig Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
PUT /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
2.2.98.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildConfig | true | string |
2.2.98.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.98.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.98.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.98.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.99. delete a BuildConfig Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
DELETE /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
2.2.99.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildConfig | true | string |
2.2.99.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.99.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.99.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.99.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.100. partially update the specified BuildConfig Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
PATCH /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
2.2.100.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildConfig | true | string |
2.2.100.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.100.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.100.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.100.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.101. read the specified BuildConfig Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
GET /oapi/v1/namespaces/{namespace}/buildconfigs/{name}
2.2.101.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildConfig | true | string |
2.2.101.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.101.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.101.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.101.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.102. create instantiate of a BuildRequest Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/instantiate
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/instantiate
2.2.102.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildRequest | true | string |
2.2.102.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.102.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.102.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.102.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.103. connect POST requests to instantiatebinary of BinaryBuildRequestOptions Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/instantiatebinary
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/instantiatebinary
2.2.103.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | asFile | asFile determines if the binary should be created as a file within the source rather than extracted as an archive | false | string | |
| QueryParameter | revision.commit | revision.commit is the value identifying a specific commit | false | string | |
| QueryParameter | revision.message | revision.message is the description of a specific commit | false | string | |
| QueryParameter | revision.authorName | revision.authorName of the source control user | false | string | |
| QueryParameter | revision.authorEmail | revision.authorEmail of the source control user | false | string | |
| QueryParameter | revision.committerName | revision.committerName of the source control user | false | string | |
| QueryParameter | revision.committerEmail | revision.committerEmail of the source control user | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BinaryBuildRequestOptions | true | string |
2.2.103.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| default | success | string |
2.2.103.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.103.4. Produces Copy linkLink copied to clipboard!
- /
2.2.103.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.104. connect POST requests to webhooks of Status Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks
2.2.104.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | path | Path is the URL path to use for the current proxy request to pod. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Status | true | string |
2.2.104.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| default | success | string |
2.2.104.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.104.4. Produces Copy linkLink copied to clipboard!
- /
2.2.104.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.105. connect POST requests to webhooks of Status Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks/{path}
POST /oapi/v1/namespaces/{namespace}/buildconfigs/{name}/webhooks/{path}
2.2.105.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | path | Path is the URL path to use for the current proxy request to pod. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Status | true | string | |
| PathParameter | path | path to the resource | true | string |
2.2.105.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| default | success | string |
2.2.105.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.105.4. Produces Copy linkLink copied to clipboard!
- /
2.2.105.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.106. delete collection of Build Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/builds
DELETE /oapi/v1/namespaces/{namespace}/builds
2.2.106.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.106.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.106.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.106.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.106.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.107. create a Build Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/builds
POST /oapi/v1/namespaces/{namespace}/builds
2.2.107.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.107.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.107.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.107.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.107.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.108. list or watch objects of kind Build Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/builds
GET /oapi/v1/namespaces/{namespace}/builds
2.2.108.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.108.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.108.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.108.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.108.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.109. replace the specified Build Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/builds/{name}
PUT /oapi/v1/namespaces/{namespace}/builds/{name}
2.2.109.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Build | true | string |
2.2.109.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.109.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.109.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.109.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.110. delete a Build Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/builds/{name}
DELETE /oapi/v1/namespaces/{namespace}/builds/{name}
2.2.110.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Build | true | string |
2.2.110.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.110.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.110.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.110.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.111. partially update the specified Build Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/builds/{name}
PATCH /oapi/v1/namespaces/{namespace}/builds/{name}
2.2.111.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Build | true | string |
2.2.111.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.111.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.111.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.111.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.112. read the specified Build Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/builds/{name}
GET /oapi/v1/namespaces/{namespace}/builds/{name}
2.2.112.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Build | true | string |
2.2.112.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.112.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.112.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.112.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.113. create clone of a BuildRequest Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/builds/{name}/clone
POST /oapi/v1/namespaces/{namespace}/builds/{name}/clone
2.2.113.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildRequest | true | string |
2.2.113.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.113.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.113.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.113.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.114. replace details of the specified Build Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/builds/{name}/details
PUT /oapi/v1/namespaces/{namespace}/builds/{name}/details
2.2.114.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Build | true | string |
2.2.114.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.114.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.114.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.114.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.115. read log of the specified BuildLog Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/builds/{name}/log
GET /oapi/v1/namespaces/{namespace}/builds/{name}/log
2.2.115.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | container | cointainer for which to stream logs. Defaults to only container if there is one container in the pod. | false | string | |
| QueryParameter | follow | follow if true indicates that the build log should be streamed until the build terminates. | false | boolean | |
| QueryParameter | previous | previous returns previous build logs. Defaults to false. | false | boolean | |
| QueryParameter | sinceSeconds | sinceSeconds is a relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. | false | integer | |
| QueryParameter | sinceTime | sinceTime is an RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. | false | string | |
| QueryParameter | timestamps | timestamps, If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. | false | boolean | |
| QueryParameter | tailLines | tailLines, If set, is the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime | false | integer | |
| QueryParameter | limitBytes | limitBytes, If set, is the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. | false | integer | |
| QueryParameter | nowait | noWait if true causes the call to return immediately even if the build is not available yet. Otherwise the server will wait until the build has started. | false | boolean | |
| QueryParameter | version | version of the build for which to view logs. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildLog | true | string |
2.2.115.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.115.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.115.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.115.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.116. create a DeploymentConfigRollback Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/deploymentconfigrollbacks
POST /oapi/v1/namespaces/{namespace}/deploymentconfigrollbacks
2.2.116.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.116.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.116.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.116.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.116.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.117. delete collection of DeploymentConfig Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/deploymentconfigs
DELETE /oapi/v1/namespaces/{namespace}/deploymentconfigs
2.2.117.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.117.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.117.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.117.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.117.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.118. create a DeploymentConfig Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/deploymentconfigs
POST /oapi/v1/namespaces/{namespace}/deploymentconfigs
2.2.118.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.118.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.118.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.118.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.118.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.119. list or watch objects of kind DeploymentConfig Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs
2.2.119.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.119.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.119.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.119.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.119.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.120. replace the specified DeploymentConfig Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
2.2.120.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfig | true | string |
2.2.120.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.120.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.120.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.120.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.121. delete a DeploymentConfig Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
DELETE /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
2.2.121.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfig | true | string |
2.2.121.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.121.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.121.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.121.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.122. partially update the specified DeploymentConfig Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
2.2.122.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfig | true | string |
2.2.122.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.122.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.122.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.122.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.123. read the specified DeploymentConfig Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}
2.2.123.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfig | true | string |
2.2.123.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.123.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.123.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.123.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.124. create instantiate of a DeploymentRequest Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/instantiate
POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/instantiate
2.2.124.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentRequest | true | string |
2.2.124.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.124.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.124.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.124.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.125. read log of the specified DeploymentLog Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/log
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/log
2.2.125.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | container | The container for which to stream logs. Defaults to only container if there is one container in the pod. | false | string | |
| QueryParameter | follow | Follow if true indicates that the build log should be streamed until the build terminates. | false | boolean | |
| QueryParameter | previous | Return previous deployment logs. Defaults to false. | false | boolean | |
| QueryParameter | sinceSeconds | A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. | false | integer | |
| QueryParameter | sinceTime | An RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. | false | string | |
| QueryParameter | timestamps | If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. | false | boolean | |
| QueryParameter | tailLines | If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime | false | integer | |
| QueryParameter | limitBytes | If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. | false | integer | |
| QueryParameter | nowait | NoWait if true causes the call to return immediately even if the deployment is not available yet. Otherwise the server will wait until the deployment has started. | false | boolean | |
| QueryParameter | version | Version of the deployment for which to view logs. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentLog | true | string |
2.2.125.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.125.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.125.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.125.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.126. create rollback of a DeploymentConfigRollback Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/rollback
POST /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/rollback
2.2.126.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfigRollback | true | string |
2.2.126.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.126.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.126.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.126.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.127. replace scale of the specified Scale Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale
PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale
2.2.127.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Scale | true | string |
2.2.127.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.127.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.127.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.127.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.128. partially update scale of the specified Scale Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale
PATCH /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale
2.2.128.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Scale | true | string |
2.2.128.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.128.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.128.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.128.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.129. read scale of the specified Scale Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale
GET /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/scale
2.2.129.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Scale | true | string |
2.2.129.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.129.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.129.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.129.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.130. replace status of the specified DeploymentConfig Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/status
PUT /oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/status
2.2.130.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfig | true | string |
2.2.130.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.130.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.130.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.130.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.131. delete collection of EgressNetworkPolicy Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/egressnetworkpolicies
DELETE /oapi/v1/namespaces/{namespace}/egressnetworkpolicies
2.2.131.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.131.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.131.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.131.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.131.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.132. create a EgressNetworkPolicy Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/egressnetworkpolicies
POST /oapi/v1/namespaces/{namespace}/egressnetworkpolicies
2.2.132.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.132.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.132.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.132.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.132.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.133. list or watch objects of kind EgressNetworkPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/egressnetworkpolicies
GET /oapi/v1/namespaces/{namespace}/egressnetworkpolicies
2.2.133.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.133.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.133.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.133.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.133.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.134. replace the specified EgressNetworkPolicy Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
PUT /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
2.2.134.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the EgressNetworkPolicy | true | string |
2.2.134.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.134.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.134.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.134.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.135. delete a EgressNetworkPolicy Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
DELETE /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
2.2.135.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the EgressNetworkPolicy | true | string |
2.2.135.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.135.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.135.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.135.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.136. partially update the specified EgressNetworkPolicy Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
PATCH /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
2.2.136.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the EgressNetworkPolicy | true | string |
2.2.136.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.136.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.136.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.136.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.137. read the specified EgressNetworkPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
GET /oapi/v1/namespaces/{namespace}/egressnetworkpolicies/{name}
2.2.137.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the EgressNetworkPolicy | true | string |
2.2.137.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.137.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.137.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.137.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.138. read the specified DeploymentConfig Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/generatedeploymentconfigs/{name}
GET /oapi/v1/namespaces/{namespace}/generatedeploymentconfigs/{name}
2.2.138.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfig | true | string |
2.2.138.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.138.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.138.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.138.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.139. read the specified ImageStreamImage Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/imagestreamimages/{name}
GET /oapi/v1/namespaces/{namespace}/imagestreamimages/{name}
2.2.139.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStreamImage | true | string |
2.2.139.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.139.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.139.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.139.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.140. create a ImageStreamImport Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/imagestreamimports
POST /oapi/v1/namespaces/{namespace}/imagestreamimports
2.2.140.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.140.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.140.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.140.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.140.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.141. create a ImageStreamMapping Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/imagestreammappings
POST /oapi/v1/namespaces/{namespace}/imagestreammappings
2.2.141.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.141.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.141.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.141.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.141.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.142. delete collection of ImageStream Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/imagestreams
DELETE /oapi/v1/namespaces/{namespace}/imagestreams
2.2.142.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.142.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.142.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.142.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.142.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.143. create a ImageStream Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/imagestreams
POST /oapi/v1/namespaces/{namespace}/imagestreams
2.2.143.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.143.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.143.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.143.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.143.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.144. list or watch objects of kind ImageStream Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/imagestreams
GET /oapi/v1/namespaces/{namespace}/imagestreams
2.2.144.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.144.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.144.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.144.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.144.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.145. replace the specified ImageStream Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/imagestreams/{name}
PUT /oapi/v1/namespaces/{namespace}/imagestreams/{name}
2.2.145.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStream | true | string |
2.2.145.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.145.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.145.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.145.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.146. delete a ImageStream Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/imagestreams/{name}
DELETE /oapi/v1/namespaces/{namespace}/imagestreams/{name}
2.2.146.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStream | true | string |
2.2.146.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.146.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.146.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.146.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.147. partially update the specified ImageStream Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/imagestreams/{name}
PATCH /oapi/v1/namespaces/{namespace}/imagestreams/{name}
2.2.147.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStream | true | string |
2.2.147.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.147.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.147.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.147.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.148. read the specified ImageStream Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/imagestreams/{name}
GET /oapi/v1/namespaces/{namespace}/imagestreams/{name}
2.2.148.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStream | true | string |
2.2.148.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.148.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.148.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.148.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.149. read secrets of the specified SecretList Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/imagestreams/{name}/secrets
GET /oapi/v1/namespaces/{namespace}/imagestreams/{name}/secrets
2.2.149.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the SecretList | true | string |
2.2.149.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.149.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.149.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.149.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.150. replace status of the specified ImageStream Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/imagestreams/{name}/status
PUT /oapi/v1/namespaces/{namespace}/imagestreams/{name}/status
2.2.150.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStream | true | string |
2.2.150.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.150.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.150.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.150.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.151. create a ImageStreamTag Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/imagestreamtags
POST /oapi/v1/namespaces/{namespace}/imagestreamtags
2.2.151.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.151.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.151.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.151.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.151.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.152. list objects of kind ImageStreamTag Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/imagestreamtags
GET /oapi/v1/namespaces/{namespace}/imagestreamtags
2.2.152.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.152.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.152.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.152.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.152.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.153. replace the specified ImageStreamTag Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
PUT /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
2.2.153.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStreamTag | true | string |
2.2.153.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.153.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.153.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.153.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.154. delete a ImageStreamTag Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
DELETE /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
2.2.154.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStreamTag | true | string |
2.2.154.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.154.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.154.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.154.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.155. partially update the specified ImageStreamTag Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
PATCH /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
2.2.155.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStreamTag | true | string |
2.2.155.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.155.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.155.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.155.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.156. read the specified ImageStreamTag Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
GET /oapi/v1/namespaces/{namespace}/imagestreamtags/{name}
2.2.156.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStreamTag | true | string |
2.2.156.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.156.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.156.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.156.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.157. create a LocalResourceAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/localresourceaccessreviews
POST /oapi/v1/namespaces/{namespace}/localresourceaccessreviews
2.2.157.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.157.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.157.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.157.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.157.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.158. create a LocalSubjectAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/localsubjectaccessreviews
POST /oapi/v1/namespaces/{namespace}/localsubjectaccessreviews
2.2.158.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.158.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.158.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.158.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.158.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.159. create a PodSecurityPolicyReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/podsecuritypolicyreviews
POST /oapi/v1/namespaces/{namespace}/podsecuritypolicyreviews
2.2.159.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.159.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.159.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.159.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.159.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.160. create a PodSecurityPolicySelfSubjectReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/podsecuritypolicyselfsubjectreviews
POST /oapi/v1/namespaces/{namespace}/podsecuritypolicyselfsubjectreviews
2.2.160.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.160.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.160.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.160.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.160.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.161. create a PodSecurityPolicySubjectReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/podsecuritypolicysubjectreviews
POST /oapi/v1/namespaces/{namespace}/podsecuritypolicysubjectreviews
2.2.161.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.161.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.161.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.161.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.161.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.162. delete collection of Policy Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/policies
DELETE /oapi/v1/namespaces/{namespace}/policies
2.2.162.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.162.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.162.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.162.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.162.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.163. create a Policy Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/policies
POST /oapi/v1/namespaces/{namespace}/policies
2.2.163.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.163.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.163.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.163.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.163.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.164. list or watch objects of kind Policy Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/policies
GET /oapi/v1/namespaces/{namespace}/policies
2.2.164.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.164.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.164.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.164.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.164.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.165. replace the specified Policy Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/policies/{name}
PUT /oapi/v1/namespaces/{namespace}/policies/{name}
2.2.165.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Policy | true | string |
2.2.165.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.165.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.165.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.165.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.166. delete a Policy Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/policies/{name}
DELETE /oapi/v1/namespaces/{namespace}/policies/{name}
2.2.166.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Policy | true | string |
2.2.166.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.166.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.166.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.166.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.167. partially update the specified Policy Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/policies/{name}
PATCH /oapi/v1/namespaces/{namespace}/policies/{name}
2.2.167.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Policy | true | string |
2.2.167.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.167.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.167.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.167.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.168. read the specified Policy Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/policies/{name}
GET /oapi/v1/namespaces/{namespace}/policies/{name}
2.2.168.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Policy | true | string |
2.2.168.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.168.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.168.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.168.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.169. delete collection of PolicyBinding Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/policybindings
DELETE /oapi/v1/namespaces/{namespace}/policybindings
2.2.169.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.169.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.169.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.169.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.169.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.170. create a PolicyBinding Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/policybindings
POST /oapi/v1/namespaces/{namespace}/policybindings
2.2.170.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.170.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.170.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.170.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.170.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.171. list or watch objects of kind PolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/policybindings
GET /oapi/v1/namespaces/{namespace}/policybindings
2.2.171.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.171.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.171.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.171.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.171.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.172. replace the specified PolicyBinding Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/policybindings/{name}
PUT /oapi/v1/namespaces/{namespace}/policybindings/{name}
2.2.172.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the PolicyBinding | true | string |
2.2.172.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.172.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.172.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.172.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.173. delete a PolicyBinding Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/policybindings/{name}
DELETE /oapi/v1/namespaces/{namespace}/policybindings/{name}
2.2.173.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the PolicyBinding | true | string |
2.2.173.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.173.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.173.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.173.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.174. partially update the specified PolicyBinding Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/policybindings/{name}
PATCH /oapi/v1/namespaces/{namespace}/policybindings/{name}
2.2.174.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the PolicyBinding | true | string |
2.2.174.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.174.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.174.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.174.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.175. read the specified PolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/policybindings/{name}
GET /oapi/v1/namespaces/{namespace}/policybindings/{name}
2.2.175.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the PolicyBinding | true | string |
2.2.175.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.175.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.175.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.175.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.176. create a Template Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/processedtemplates
POST /oapi/v1/namespaces/{namespace}/processedtemplates
2.2.176.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.176.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.176.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.176.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.176.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.177. create a ResourceAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/resourceaccessreviews
POST /oapi/v1/namespaces/{namespace}/resourceaccessreviews
2.2.177.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.177.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.177.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.177.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.177.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.178. create a RoleBinding Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/rolebindings
POST /oapi/v1/namespaces/{namespace}/rolebindings
2.2.178.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.178.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.178.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.178.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.178.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.179. list objects of kind RoleBinding Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/rolebindings
GET /oapi/v1/namespaces/{namespace}/rolebindings
2.2.179.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.179.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.179.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.179.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.179.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.180. replace the specified RoleBinding Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/rolebindings/{name}
PUT /oapi/v1/namespaces/{namespace}/rolebindings/{name}
2.2.180.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the RoleBinding | true | string |
2.2.180.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.180.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.180.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.180.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.181. delete a RoleBinding Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/rolebindings/{name}
DELETE /oapi/v1/namespaces/{namespace}/rolebindings/{name}
2.2.181.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the RoleBinding | true | string |
2.2.181.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.181.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.181.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.181.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.182. partially update the specified RoleBinding Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/rolebindings/{name}
PATCH /oapi/v1/namespaces/{namespace}/rolebindings/{name}
2.2.182.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the RoleBinding | true | string |
2.2.182.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.182.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.182.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.182.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.183. read the specified RoleBinding Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/rolebindings/{name}
GET /oapi/v1/namespaces/{namespace}/rolebindings/{name}
2.2.183.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the RoleBinding | true | string |
2.2.183.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.183.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.183.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.183.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.184. create a Role Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/roles
POST /oapi/v1/namespaces/{namespace}/roles
2.2.184.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.184.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.184.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.184.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.184.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.185. list objects of kind Role Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/roles
GET /oapi/v1/namespaces/{namespace}/roles
2.2.185.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.185.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.185.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.185.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.185.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.186. replace the specified Role Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/roles/{name}
PUT /oapi/v1/namespaces/{namespace}/roles/{name}
2.2.186.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Role | true | string |
2.2.186.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.186.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.186.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.186.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.187. delete a Role Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/roles/{name}
DELETE /oapi/v1/namespaces/{namespace}/roles/{name}
2.2.187.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Role | true | string |
2.2.187.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.187.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.187.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.187.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.188. partially update the specified Role Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/roles/{name}
PATCH /oapi/v1/namespaces/{namespace}/roles/{name}
2.2.188.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Role | true | string |
2.2.188.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.188.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.188.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.188.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.189. read the specified Role Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/roles/{name}
GET /oapi/v1/namespaces/{namespace}/roles/{name}
2.2.189.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Role | true | string |
2.2.189.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.189.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.189.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.189.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.190. delete collection of Route Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/routes
DELETE /oapi/v1/namespaces/{namespace}/routes
2.2.190.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.190.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.190.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.190.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.190.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.191. create a Route Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/routes
POST /oapi/v1/namespaces/{namespace}/routes
2.2.191.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.191.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.191.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.191.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.191.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.192. list or watch objects of kind Route Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/routes
GET /oapi/v1/namespaces/{namespace}/routes
2.2.192.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.192.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.192.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.192.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.192.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.193. replace the specified Route Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/routes/{name}
PUT /oapi/v1/namespaces/{namespace}/routes/{name}
2.2.193.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Route | true | string |
2.2.193.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.193.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.193.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.193.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.194. delete a Route Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/routes/{name}
DELETE /oapi/v1/namespaces/{namespace}/routes/{name}
2.2.194.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Route | true | string |
2.2.194.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.194.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.194.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.194.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.195. partially update the specified Route Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/routes/{name}
PATCH /oapi/v1/namespaces/{namespace}/routes/{name}
2.2.195.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Route | true | string |
2.2.195.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.195.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.195.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.195.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.196. read the specified Route Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/routes/{name}
GET /oapi/v1/namespaces/{namespace}/routes/{name}
2.2.196.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Route | true | string |
2.2.196.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.196.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.196.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.196.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.197. replace status of the specified Route Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/routes/{name}/status
PUT /oapi/v1/namespaces/{namespace}/routes/{name}/status
2.2.197.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Route | true | string |
2.2.197.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.197.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.197.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.197.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.198. create a SelfSubjectRulesReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/selfsubjectrulesreviews
POST /oapi/v1/namespaces/{namespace}/selfsubjectrulesreviews
2.2.198.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.198.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.198.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.198.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.198.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.199. create a SubjectAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/subjectaccessreviews
POST /oapi/v1/namespaces/{namespace}/subjectaccessreviews
2.2.199.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.199.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.199.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.199.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.199.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.200. create a SubjectRulesReview Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/subjectrulesreviews
POST /oapi/v1/namespaces/{namespace}/subjectrulesreviews
2.2.200.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.200.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.200.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.200.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.200.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.201. delete collection of Template Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/templates
DELETE /oapi/v1/namespaces/{namespace}/templates
2.2.201.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.201.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.201.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.201.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.201.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.202. create a Template Copy linkLink copied to clipboard!
POST /oapi/v1/namespaces/{namespace}/templates
POST /oapi/v1/namespaces/{namespace}/templates
2.2.202.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.202.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.202.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.202.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.202.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.203. list or watch objects of kind Template Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/templates
GET /oapi/v1/namespaces/{namespace}/templates
2.2.203.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.203.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.203.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.203.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.203.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.204. replace the specified Template Copy linkLink copied to clipboard!
PUT /oapi/v1/namespaces/{namespace}/templates/{name}
PUT /oapi/v1/namespaces/{namespace}/templates/{name}
2.2.204.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Template | true | string |
2.2.204.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.204.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.204.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.204.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.205. delete a Template Copy linkLink copied to clipboard!
DELETE /oapi/v1/namespaces/{namespace}/templates/{name}
DELETE /oapi/v1/namespaces/{namespace}/templates/{name}
2.2.205.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Template | true | string |
2.2.205.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.205.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.205.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.205.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.206. partially update the specified Template Copy linkLink copied to clipboard!
PATCH /oapi/v1/namespaces/{namespace}/templates/{name}
PATCH /oapi/v1/namespaces/{namespace}/templates/{name}
2.2.206.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Template | true | string |
2.2.206.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.206.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.206.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.206.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.207. read the specified Template Copy linkLink copied to clipboard!
GET /oapi/v1/namespaces/{namespace}/templates/{name}
GET /oapi/v1/namespaces/{namespace}/templates/{name}
2.2.207.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Template | true | string |
2.2.207.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.207.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.207.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.207.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.208. delete collection of NetNamespace Copy linkLink copied to clipboard!
DELETE /oapi/v1/netnamespaces
DELETE /oapi/v1/netnamespaces
2.2.208.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.208.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.208.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.208.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.208.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.209. create a NetNamespace Copy linkLink copied to clipboard!
POST /oapi/v1/netnamespaces
POST /oapi/v1/netnamespaces
2.2.209.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.209.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.209.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.209.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.209.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.210. list or watch objects of kind NetNamespace Copy linkLink copied to clipboard!
GET /oapi/v1/netnamespaces
GET /oapi/v1/netnamespaces
2.2.210.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.210.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.210.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.210.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.210.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.211. replace the specified NetNamespace Copy linkLink copied to clipboard!
PUT /oapi/v1/netnamespaces/{name}
PUT /oapi/v1/netnamespaces/{name}
2.2.211.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the NetNamespace | true | string |
2.2.211.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.211.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.211.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.211.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.212. delete a NetNamespace Copy linkLink copied to clipboard!
DELETE /oapi/v1/netnamespaces/{name}
DELETE /oapi/v1/netnamespaces/{name}
2.2.212.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the NetNamespace | true | string |
2.2.212.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.212.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.212.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.212.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.213. partially update the specified NetNamespace Copy linkLink copied to clipboard!
PATCH /oapi/v1/netnamespaces/{name}
PATCH /oapi/v1/netnamespaces/{name}
2.2.213.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the NetNamespace | true | string |
2.2.213.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.213.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.213.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.213.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.214. read the specified NetNamespace Copy linkLink copied to clipboard!
GET /oapi/v1/netnamespaces/{name}
GET /oapi/v1/netnamespaces/{name}
2.2.214.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the NetNamespace | true | string |
2.2.214.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.214.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.214.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.214.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.215. delete collection of OAuthAccessToken Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthaccesstokens
DELETE /oapi/v1/oauthaccesstokens
2.2.215.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.215.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.215.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.215.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.215.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.216. create a OAuthAccessToken Copy linkLink copied to clipboard!
POST /oapi/v1/oauthaccesstokens
POST /oapi/v1/oauthaccesstokens
2.2.216.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.216.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.216.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.216.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.216.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.217. list or watch objects of kind OAuthAccessToken Copy linkLink copied to clipboard!
GET /oapi/v1/oauthaccesstokens
GET /oapi/v1/oauthaccesstokens
2.2.217.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.217.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.217.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.217.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.217.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.218. replace the specified OAuthAccessToken Copy linkLink copied to clipboard!
PUT /oapi/v1/oauthaccesstokens/{name}
PUT /oapi/v1/oauthaccesstokens/{name}
2.2.218.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthAccessToken | true | string |
2.2.218.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.218.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.218.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.218.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.219. delete a OAuthAccessToken Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthaccesstokens/{name}
DELETE /oapi/v1/oauthaccesstokens/{name}
2.2.219.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthAccessToken | true | string |
2.2.219.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.219.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.219.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.219.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.220. partially update the specified OAuthAccessToken Copy linkLink copied to clipboard!
PATCH /oapi/v1/oauthaccesstokens/{name}
PATCH /oapi/v1/oauthaccesstokens/{name}
2.2.220.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthAccessToken | true | string |
2.2.220.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.220.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.220.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.220.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.221. read the specified OAuthAccessToken Copy linkLink copied to clipboard!
GET /oapi/v1/oauthaccesstokens/{name}
GET /oapi/v1/oauthaccesstokens/{name}
2.2.221.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the OAuthAccessToken | true | string |
2.2.221.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.221.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.221.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.221.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.222. delete collection of OAuthAuthorizeToken Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthauthorizetokens
DELETE /oapi/v1/oauthauthorizetokens
2.2.222.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.222.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.222.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.222.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.222.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.223. create a OAuthAuthorizeToken Copy linkLink copied to clipboard!
POST /oapi/v1/oauthauthorizetokens
POST /oapi/v1/oauthauthorizetokens
2.2.223.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.223.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.223.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.223.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.223.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.224. list or watch objects of kind OAuthAuthorizeToken Copy linkLink copied to clipboard!
GET /oapi/v1/oauthauthorizetokens
GET /oapi/v1/oauthauthorizetokens
2.2.224.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.224.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.224.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.224.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.224.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.225. replace the specified OAuthAuthorizeToken Copy linkLink copied to clipboard!
PUT /oapi/v1/oauthauthorizetokens/{name}
PUT /oapi/v1/oauthauthorizetokens/{name}
2.2.225.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthAuthorizeToken | true | string |
2.2.225.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.225.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.225.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.225.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.226. delete a OAuthAuthorizeToken Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthauthorizetokens/{name}
DELETE /oapi/v1/oauthauthorizetokens/{name}
2.2.226.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthAuthorizeToken | true | string |
2.2.226.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.226.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.226.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.226.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.227. partially update the specified OAuthAuthorizeToken Copy linkLink copied to clipboard!
PATCH /oapi/v1/oauthauthorizetokens/{name}
PATCH /oapi/v1/oauthauthorizetokens/{name}
2.2.227.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthAuthorizeToken | true | string |
2.2.227.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.227.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.227.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.227.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.228. read the specified OAuthAuthorizeToken Copy linkLink copied to clipboard!
GET /oapi/v1/oauthauthorizetokens/{name}
GET /oapi/v1/oauthauthorizetokens/{name}
2.2.228.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the OAuthAuthorizeToken | true | string |
2.2.228.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.228.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.228.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.228.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.229. delete collection of OAuthClientAuthorization Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthclientauthorizations
DELETE /oapi/v1/oauthclientauthorizations
2.2.229.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.229.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.229.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.229.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.229.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.230. create a OAuthClientAuthorization Copy linkLink copied to clipboard!
POST /oapi/v1/oauthclientauthorizations
POST /oapi/v1/oauthclientauthorizations
2.2.230.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.230.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.230.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.230.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.230.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.231. list or watch objects of kind OAuthClientAuthorization Copy linkLink copied to clipboard!
GET /oapi/v1/oauthclientauthorizations
GET /oapi/v1/oauthclientauthorizations
2.2.231.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.231.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.231.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.231.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.231.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.232. replace the specified OAuthClientAuthorization Copy linkLink copied to clipboard!
PUT /oapi/v1/oauthclientauthorizations/{name}
PUT /oapi/v1/oauthclientauthorizations/{name}
2.2.232.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthClientAuthorization | true | string |
2.2.232.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.232.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.232.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.232.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.233. delete a OAuthClientAuthorization Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthclientauthorizations/{name}
DELETE /oapi/v1/oauthclientauthorizations/{name}
2.2.233.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthClientAuthorization | true | string |
2.2.233.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.233.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.233.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.233.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.234. partially update the specified OAuthClientAuthorization Copy linkLink copied to clipboard!
PATCH /oapi/v1/oauthclientauthorizations/{name}
PATCH /oapi/v1/oauthclientauthorizations/{name}
2.2.234.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthClientAuthorization | true | string |
2.2.234.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.234.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.234.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.234.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.235. read the specified OAuthClientAuthorization Copy linkLink copied to clipboard!
GET /oapi/v1/oauthclientauthorizations/{name}
GET /oapi/v1/oauthclientauthorizations/{name}
2.2.235.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the OAuthClientAuthorization | true | string |
2.2.235.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.235.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.235.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.235.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.236. delete collection of OAuthClient Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthclients
DELETE /oapi/v1/oauthclients
2.2.236.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.236.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.236.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.236.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.236.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.237. create a OAuthClient Copy linkLink copied to clipboard!
POST /oapi/v1/oauthclients
POST /oapi/v1/oauthclients
2.2.237.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.237.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.237.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.237.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.237.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.238. list or watch objects of kind OAuthClient Copy linkLink copied to clipboard!
GET /oapi/v1/oauthclients
GET /oapi/v1/oauthclients
2.2.238.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.238.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.238.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.238.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.238.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.239. replace the specified OAuthClient Copy linkLink copied to clipboard!
PUT /oapi/v1/oauthclients/{name}
PUT /oapi/v1/oauthclients/{name}
2.2.239.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthClient | true | string |
2.2.239.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.239.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.239.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.239.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.240. delete a OAuthClient Copy linkLink copied to clipboard!
DELETE /oapi/v1/oauthclients/{name}
DELETE /oapi/v1/oauthclients/{name}
2.2.240.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthClient | true | string |
2.2.240.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.240.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.240.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.240.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.241. partially update the specified OAuthClient Copy linkLink copied to clipboard!
PATCH /oapi/v1/oauthclients/{name}
PATCH /oapi/v1/oauthclients/{name}
2.2.241.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the OAuthClient | true | string |
2.2.241.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.241.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.241.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.241.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.242. read the specified OAuthClient Copy linkLink copied to clipboard!
GET /oapi/v1/oauthclients/{name}
GET /oapi/v1/oauthclients/{name}
2.2.242.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the OAuthClient | true | string |
2.2.242.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.242.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.242.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.242.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.243. create a PodSecurityPolicyReview Copy linkLink copied to clipboard!
POST /oapi/v1/podsecuritypolicyreviews
POST /oapi/v1/podsecuritypolicyreviews
2.2.243.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.243.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.243.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.243.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.243.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.244. create a PodSecurityPolicySelfSubjectReview Copy linkLink copied to clipboard!
POST /oapi/v1/podsecuritypolicyselfsubjectreviews
POST /oapi/v1/podsecuritypolicyselfsubjectreviews
2.2.244.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.244.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.244.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.244.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.244.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.245. create a PodSecurityPolicySubjectReview Copy linkLink copied to clipboard!
POST /oapi/v1/podsecuritypolicysubjectreviews
POST /oapi/v1/podsecuritypolicysubjectreviews
2.2.245.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.245.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.245.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.245.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.245.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.246. create a Policy Copy linkLink copied to clipboard!
POST /oapi/v1/policies
POST /oapi/v1/policies
2.2.246.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.246.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.246.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.246.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.246.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.247. list or watch objects of kind Policy Copy linkLink copied to clipboard!
GET /oapi/v1/policies
GET /oapi/v1/policies
2.2.247.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.247.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.247.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.247.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.247.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.248. create a PolicyBinding Copy linkLink copied to clipboard!
POST /oapi/v1/policybindings
POST /oapi/v1/policybindings
2.2.248.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.248.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.248.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.248.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.248.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.249. list or watch objects of kind PolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/policybindings
GET /oapi/v1/policybindings
2.2.249.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.249.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.249.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.249.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.249.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.250. create a Template Copy linkLink copied to clipboard!
POST /oapi/v1/processedtemplates
POST /oapi/v1/processedtemplates
2.2.250.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.250.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.250.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.250.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.250.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.251. create a ProjectRequest Copy linkLink copied to clipboard!
POST /oapi/v1/projectrequests
POST /oapi/v1/projectrequests
2.2.251.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.251.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.251.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.251.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.251.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.252. list objects of kind ProjectRequest Copy linkLink copied to clipboard!
GET /oapi/v1/projectrequests
GET /oapi/v1/projectrequests
2.2.252.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.252.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.252.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.252.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.252.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.253. create a Project Copy linkLink copied to clipboard!
POST /oapi/v1/projects
POST /oapi/v1/projects
2.2.253.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.253.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.253.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.253.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.253.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.254. list or watch objects of kind Project Copy linkLink copied to clipboard!
GET /oapi/v1/projects
GET /oapi/v1/projects
2.2.254.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.254.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.254.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.254.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.254.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.255. replace the specified Project Copy linkLink copied to clipboard!
PUT /oapi/v1/projects/{name}
PUT /oapi/v1/projects/{name}
2.2.255.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Project | true | string |
2.2.255.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.255.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.255.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.255.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.256. delete a Project Copy linkLink copied to clipboard!
DELETE /oapi/v1/projects/{name}
DELETE /oapi/v1/projects/{name}
2.2.256.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the Project | true | string |
2.2.256.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.256.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.256.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.256.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.257. partially update the specified Project Copy linkLink copied to clipboard!
PATCH /oapi/v1/projects/{name}
PATCH /oapi/v1/projects/{name}
2.2.257.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the Project | true | string |
2.2.257.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.257.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.257.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.257.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.258. read the specified Project Copy linkLink copied to clipboard!
GET /oapi/v1/projects/{name}
GET /oapi/v1/projects/{name}
2.2.258.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the Project | true | string |
2.2.258.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.258.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.258.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.258.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.259. create a ResourceAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/resourceaccessreviews
POST /oapi/v1/resourceaccessreviews
2.2.259.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.259.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.259.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.259.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.259.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.260. create a RoleBinding Copy linkLink copied to clipboard!
POST /oapi/v1/rolebindings
POST /oapi/v1/rolebindings
2.2.260.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.260.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.260.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.260.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.260.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.261. list objects of kind RoleBinding Copy linkLink copied to clipboard!
GET /oapi/v1/rolebindings
GET /oapi/v1/rolebindings
2.2.261.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.261.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.261.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.261.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.261.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.262. create a Role Copy linkLink copied to clipboard!
POST /oapi/v1/roles
POST /oapi/v1/roles
2.2.262.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.262.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.262.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.262.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.262.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.263. list objects of kind Role Copy linkLink copied to clipboard!
GET /oapi/v1/roles
GET /oapi/v1/roles
2.2.263.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.263.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.263.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.263.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.263.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.264. create a Route Copy linkLink copied to clipboard!
POST /oapi/v1/routes
POST /oapi/v1/routes
2.2.264.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.264.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.264.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.264.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.264.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.265. list or watch objects of kind Route Copy linkLink copied to clipboard!
GET /oapi/v1/routes
GET /oapi/v1/routes
2.2.265.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.265.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.265.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.265.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.265.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.266. create a SelfSubjectRulesReview Copy linkLink copied to clipboard!
POST /oapi/v1/selfsubjectrulesreviews
POST /oapi/v1/selfsubjectrulesreviews
2.2.266.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.266.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.266.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.266.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.266.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.267. create a SubjectAccessReview Copy linkLink copied to clipboard!
POST /oapi/v1/subjectaccessreviews
POST /oapi/v1/subjectaccessreviews
2.2.267.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.267.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.267.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.267.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.267.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.268. create a SubjectRulesReview Copy linkLink copied to clipboard!
POST /oapi/v1/subjectrulesreviews
POST /oapi/v1/subjectrulesreviews
2.2.268.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.268.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.268.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.268.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.268.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.269. create a Template Copy linkLink copied to clipboard!
POST /oapi/v1/templates
POST /oapi/v1/templates
2.2.269.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.269.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.269.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.269.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.269.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.270. list or watch objects of kind Template Copy linkLink copied to clipboard!
GET /oapi/v1/templates
GET /oapi/v1/templates
2.2.270.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.270.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.270.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.270.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.270.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.271. create a UserIdentityMapping Copy linkLink copied to clipboard!
POST /oapi/v1/useridentitymappings
POST /oapi/v1/useridentitymappings
2.2.271.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.271.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.271.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.271.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.271.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.272. replace the specified UserIdentityMapping Copy linkLink copied to clipboard!
PUT /oapi/v1/useridentitymappings/{name}
PUT /oapi/v1/useridentitymappings/{name}
2.2.272.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the UserIdentityMapping | true | string |
2.2.272.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.272.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.272.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.272.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.273. delete a UserIdentityMapping Copy linkLink copied to clipboard!
DELETE /oapi/v1/useridentitymappings/{name}
DELETE /oapi/v1/useridentitymappings/{name}
2.2.273.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the UserIdentityMapping | true | string |
2.2.273.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.273.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.273.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.273.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.274. partially update the specified UserIdentityMapping Copy linkLink copied to clipboard!
PATCH /oapi/v1/useridentitymappings/{name}
PATCH /oapi/v1/useridentitymappings/{name}
2.2.274.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the UserIdentityMapping | true | string |
2.2.274.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.274.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.274.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.274.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.275. read the specified UserIdentityMapping Copy linkLink copied to clipboard!
GET /oapi/v1/useridentitymappings/{name}
GET /oapi/v1/useridentitymappings/{name}
2.2.275.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| PathParameter | name | name of the UserIdentityMapping | true | string |
2.2.275.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.275.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.275.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.275.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.276. delete collection of User Copy linkLink copied to clipboard!
DELETE /oapi/v1/users
DELETE /oapi/v1/users
2.2.276.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.276.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.276.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.276.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.276.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.277. create a User Copy linkLink copied to clipboard!
POST /oapi/v1/users
POST /oapi/v1/users
2.2.277.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true |
2.2.277.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.277.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.277.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.277.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.278. list or watch objects of kind User Copy linkLink copied to clipboard!
GET /oapi/v1/users
GET /oapi/v1/users
2.2.278.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.278.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.278.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.278.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.278.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.279. replace the specified User Copy linkLink copied to clipboard!
PUT /oapi/v1/users/{name}
PUT /oapi/v1/users/{name}
2.2.279.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the User | true | string |
2.2.279.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.279.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.279.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.279.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.280. delete a User Copy linkLink copied to clipboard!
DELETE /oapi/v1/users/{name}
DELETE /oapi/v1/users/{name}
2.2.280.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the User | true | string |
2.2.280.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.280.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.280.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.280.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.281. partially update the specified User Copy linkLink copied to clipboard!
PATCH /oapi/v1/users/{name}
PATCH /oapi/v1/users/{name}
2.2.281.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| BodyParameter | body | true | |||
| PathParameter | name | name of the User | true | string |
2.2.281.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.281.3. Consumes Copy linkLink copied to clipboard!
- application/json-patch+json
- application/merge-patch+json
- application/strategic-merge-patch+json
2.2.281.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.281.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.282. read the specified User Copy linkLink copied to clipboard!
GET /oapi/v1/users/{name}
GET /oapi/v1/users/{name}
2.2.282.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | export | Should this value be exported. Export strips fields that a user can not specify. | false | boolean | |
| QueryParameter | exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' | false | boolean | |
| PathParameter | name | name of the User | true | string |
2.2.282.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.282.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.282.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/yaml
- application/vnd.kubernetes.protobuf
2.2.282.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.283. watch individual changes to a list of BuildConfig Copy linkLink copied to clipboard!
GET /oapi/v1/watch/buildconfigs
GET /oapi/v1/watch/buildconfigs
2.2.283.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.283.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.283.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.283.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.283.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.284. watch individual changes to a list of Build Copy linkLink copied to clipboard!
GET /oapi/v1/watch/builds
GET /oapi/v1/watch/builds
2.2.284.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.284.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.284.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.284.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.284.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.285. watch individual changes to a list of ClusterNetwork Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusternetworks
GET /oapi/v1/watch/clusternetworks
2.2.285.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.285.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.285.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.285.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.285.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.286. watch changes to an object of kind ClusterNetwork Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusternetworks/{name}
GET /oapi/v1/watch/clusternetworks/{name}
2.2.286.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the ClusterNetwork | true | string |
2.2.286.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.286.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.286.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.286.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.287. watch individual changes to a list of ClusterPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusterpolicies
GET /oapi/v1/watch/clusterpolicies
2.2.287.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.287.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.287.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.287.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.287.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.288. watch changes to an object of kind ClusterPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusterpolicies/{name}
GET /oapi/v1/watch/clusterpolicies/{name}
2.2.288.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the ClusterPolicy | true | string |
2.2.288.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.288.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.288.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.288.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.289. watch individual changes to a list of ClusterPolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusterpolicybindings
GET /oapi/v1/watch/clusterpolicybindings
2.2.289.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.289.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.289.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.289.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.289.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.290. watch changes to an object of kind ClusterPolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusterpolicybindings/{name}
GET /oapi/v1/watch/clusterpolicybindings/{name}
2.2.290.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the ClusterPolicyBinding | true | string |
2.2.290.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.290.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.290.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.290.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.291. watch individual changes to a list of ClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusterresourcequotas
GET /oapi/v1/watch/clusterresourcequotas
2.2.291.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.291.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.291.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.291.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.291.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.292. watch changes to an object of kind ClusterResourceQuota Copy linkLink copied to clipboard!
GET /oapi/v1/watch/clusterresourcequotas/{name}
GET /oapi/v1/watch/clusterresourcequotas/{name}
2.2.292.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the ClusterResourceQuota | true | string |
2.2.292.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.292.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.292.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.292.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.293. watch individual changes to a list of DeploymentConfig Copy linkLink copied to clipboard!
GET /oapi/v1/watch/deploymentconfigs
GET /oapi/v1/watch/deploymentconfigs
2.2.293.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.293.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.293.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.293.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.293.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.294. watch individual changes to a list of EgressNetworkPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/egressnetworkpolicies
GET /oapi/v1/watch/egressnetworkpolicies
2.2.294.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.294.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.294.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.294.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.294.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.295. watch individual changes to a list of Group Copy linkLink copied to clipboard!
GET /oapi/v1/watch/groups
GET /oapi/v1/watch/groups
2.2.295.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.295.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.295.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.295.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.295.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.296. watch changes to an object of kind Group Copy linkLink copied to clipboard!
GET /oapi/v1/watch/groups/{name}
GET /oapi/v1/watch/groups/{name}
2.2.296.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the Group | true | string |
2.2.296.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.296.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.296.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.296.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.297. watch individual changes to a list of HostSubnet Copy linkLink copied to clipboard!
GET /oapi/v1/watch/hostsubnets
GET /oapi/v1/watch/hostsubnets
2.2.297.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.297.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.297.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.297.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.297.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.298. watch changes to an object of kind HostSubnet Copy linkLink copied to clipboard!
GET /oapi/v1/watch/hostsubnets/{name}
GET /oapi/v1/watch/hostsubnets/{name}
2.2.298.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the HostSubnet | true | string |
2.2.298.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.298.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.298.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.298.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.299. watch individual changes to a list of Identity Copy linkLink copied to clipboard!
GET /oapi/v1/watch/identities
GET /oapi/v1/watch/identities
2.2.299.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.299.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.299.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.299.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.299.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.300. watch changes to an object of kind Identity Copy linkLink copied to clipboard!
GET /oapi/v1/watch/identities/{name}
GET /oapi/v1/watch/identities/{name}
2.2.300.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the Identity | true | string |
2.2.300.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.300.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.300.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.300.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.301. watch individual changes to a list of Image Copy linkLink copied to clipboard!
GET /oapi/v1/watch/images
GET /oapi/v1/watch/images
2.2.301.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.301.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.301.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.301.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.301.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.302. watch changes to an object of kind Image Copy linkLink copied to clipboard!
GET /oapi/v1/watch/images/{name}
GET /oapi/v1/watch/images/{name}
2.2.302.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the Image | true | string |
2.2.302.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.302.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.302.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.302.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.303. watch individual changes to a list of ImageStream Copy linkLink copied to clipboard!
GET /oapi/v1/watch/imagestreams
GET /oapi/v1/watch/imagestreams
2.2.303.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.303.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.303.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.303.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.303.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.304. watch individual changes to a list of BuildConfig Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/buildconfigs
GET /oapi/v1/watch/namespaces/{namespace}/buildconfigs
2.2.304.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.304.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.304.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.304.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.304.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.305. watch changes to an object of kind BuildConfig Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/buildconfigs/{name}
GET /oapi/v1/watch/namespaces/{namespace}/buildconfigs/{name}
2.2.305.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the BuildConfig | true | string |
2.2.305.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.305.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.305.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.305.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.306. watch individual changes to a list of Build Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/builds
GET /oapi/v1/watch/namespaces/{namespace}/builds
2.2.306.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.306.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.306.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.306.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.306.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.307. watch changes to an object of kind Build Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/builds/{name}
GET /oapi/v1/watch/namespaces/{namespace}/builds/{name}
2.2.307.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Build | true | string |
2.2.307.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.307.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.307.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.307.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.308. watch individual changes to a list of DeploymentConfig Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/deploymentconfigs
GET /oapi/v1/watch/namespaces/{namespace}/deploymentconfigs
2.2.308.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.308.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.308.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.308.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.308.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.309. watch changes to an object of kind DeploymentConfig Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/deploymentconfigs/{name}
GET /oapi/v1/watch/namespaces/{namespace}/deploymentconfigs/{name}
2.2.309.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the DeploymentConfig | true | string |
2.2.309.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.309.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.309.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.309.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.310. watch individual changes to a list of EgressNetworkPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/egressnetworkpolicies
GET /oapi/v1/watch/namespaces/{namespace}/egressnetworkpolicies
2.2.310.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.310.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.310.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.310.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.310.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.311. watch changes to an object of kind EgressNetworkPolicy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/egressnetworkpolicies/{name}
GET /oapi/v1/watch/namespaces/{namespace}/egressnetworkpolicies/{name}
2.2.311.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the EgressNetworkPolicy | true | string |
2.2.311.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.311.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.311.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.311.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.312. watch individual changes to a list of ImageStream Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/imagestreams
GET /oapi/v1/watch/namespaces/{namespace}/imagestreams
2.2.312.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.312.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.312.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.312.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.312.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.313. watch changes to an object of kind ImageStream Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/imagestreams/{name}
GET /oapi/v1/watch/namespaces/{namespace}/imagestreams/{name}
2.2.313.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the ImageStream | true | string |
2.2.313.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.313.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.313.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.313.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.314. watch individual changes to a list of Policy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/policies
GET /oapi/v1/watch/namespaces/{namespace}/policies
2.2.314.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.314.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.314.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.314.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.314.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.315. watch changes to an object of kind Policy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/policies/{name}
GET /oapi/v1/watch/namespaces/{namespace}/policies/{name}
2.2.315.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Policy | true | string |
2.2.315.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.315.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.315.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.315.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.316. watch individual changes to a list of PolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/policybindings
GET /oapi/v1/watch/namespaces/{namespace}/policybindings
2.2.316.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.316.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.316.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.316.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.316.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.317. watch changes to an object of kind PolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/policybindings/{name}
GET /oapi/v1/watch/namespaces/{namespace}/policybindings/{name}
2.2.317.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the PolicyBinding | true | string |
2.2.317.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.317.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.317.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.317.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.318. watch individual changes to a list of Route Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/routes
GET /oapi/v1/watch/namespaces/{namespace}/routes
2.2.318.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.318.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.318.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.318.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.318.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.319. watch changes to an object of kind Route Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/routes/{name}
GET /oapi/v1/watch/namespaces/{namespace}/routes/{name}
2.2.319.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Route | true | string |
2.2.319.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.319.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.319.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.319.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.320. watch individual changes to a list of Template Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/templates
GET /oapi/v1/watch/namespaces/{namespace}/templates
2.2.320.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string |
2.2.320.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.320.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.320.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.320.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.321. watch changes to an object of kind Template Copy linkLink copied to clipboard!
GET /oapi/v1/watch/namespaces/{namespace}/templates/{name}
GET /oapi/v1/watch/namespaces/{namespace}/templates/{name}
2.2.321.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | namespace | object name and auth scope, such as for teams and projects | true | string | |
| PathParameter | name | name of the Template | true | string |
2.2.321.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.321.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.321.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.321.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.322. watch individual changes to a list of NetNamespace Copy linkLink copied to clipboard!
GET /oapi/v1/watch/netnamespaces
GET /oapi/v1/watch/netnamespaces
2.2.322.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.322.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.322.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.322.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.322.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.323. watch changes to an object of kind NetNamespace Copy linkLink copied to clipboard!
GET /oapi/v1/watch/netnamespaces/{name}
GET /oapi/v1/watch/netnamespaces/{name}
2.2.323.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the NetNamespace | true | string |
2.2.323.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.323.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.323.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.323.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.324. watch individual changes to a list of OAuthAccessToken Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthaccesstokens
GET /oapi/v1/watch/oauthaccesstokens
2.2.324.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.324.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.324.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.324.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.324.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.325. watch changes to an object of kind OAuthAccessToken Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthaccesstokens/{name}
GET /oapi/v1/watch/oauthaccesstokens/{name}
2.2.325.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the OAuthAccessToken | true | string |
2.2.325.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.325.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.325.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.325.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.326. watch individual changes to a list of OAuthAuthorizeToken Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthauthorizetokens
GET /oapi/v1/watch/oauthauthorizetokens
2.2.326.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.326.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.326.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.326.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.326.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.327. watch changes to an object of kind OAuthAuthorizeToken Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthauthorizetokens/{name}
GET /oapi/v1/watch/oauthauthorizetokens/{name}
2.2.327.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the OAuthAuthorizeToken | true | string |
2.2.327.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.327.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.327.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.327.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.328. watch individual changes to a list of OAuthClientAuthorization Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthclientauthorizations
GET /oapi/v1/watch/oauthclientauthorizations
2.2.328.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.328.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.328.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.328.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.328.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.329. watch changes to an object of kind OAuthClientAuthorization Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthclientauthorizations/{name}
GET /oapi/v1/watch/oauthclientauthorizations/{name}
2.2.329.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the OAuthClientAuthorization | true | string |
2.2.329.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.329.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.329.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.329.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.330. watch individual changes to a list of OAuthClient Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthclients
GET /oapi/v1/watch/oauthclients
2.2.330.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.330.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.330.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.330.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.330.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.331. watch changes to an object of kind OAuthClient Copy linkLink copied to clipboard!
GET /oapi/v1/watch/oauthclients/{name}
GET /oapi/v1/watch/oauthclients/{name}
2.2.331.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the OAuthClient | true | string |
2.2.331.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.331.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.331.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.331.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.332. watch individual changes to a list of Policy Copy linkLink copied to clipboard!
GET /oapi/v1/watch/policies
GET /oapi/v1/watch/policies
2.2.332.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.332.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.332.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.332.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.332.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.333. watch individual changes to a list of PolicyBinding Copy linkLink copied to clipboard!
GET /oapi/v1/watch/policybindings
GET /oapi/v1/watch/policybindings
2.2.333.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.333.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.333.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.333.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.333.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.334. watch individual changes to a list of Project Copy linkLink copied to clipboard!
GET /oapi/v1/watch/projects
GET /oapi/v1/watch/projects
2.2.334.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.334.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.334.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.334.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.334.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.335. watch changes to an object of kind Project Copy linkLink copied to clipboard!
GET /oapi/v1/watch/projects/{name}
GET /oapi/v1/watch/projects/{name}
2.2.335.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the Project | true | string |
2.2.335.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.335.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.335.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.335.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.336. watch individual changes to a list of Route Copy linkLink copied to clipboard!
GET /oapi/v1/watch/routes
GET /oapi/v1/watch/routes
2.2.336.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.336.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.336.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.336.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.336.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.337. watch individual changes to a list of Template Copy linkLink copied to clipboard!
GET /oapi/v1/watch/templates
GET /oapi/v1/watch/templates
2.2.337.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.337.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.337.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.337.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.337.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.338. watch individual changes to a list of User Copy linkLink copied to clipboard!
GET /oapi/v1/watch/users
GET /oapi/v1/watch/users
2.2.338.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer |
2.2.338.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.338.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.338.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.338.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.2.339. watch changes to an object of kind User Copy linkLink copied to clipboard!
GET /oapi/v1/watch/users/{name}
GET /oapi/v1/watch/users/{name}
2.2.339.1. Parameters Copy linkLink copied to clipboard!
| Type | Name | Description | Required | Schema | Default |
|---|---|---|---|---|---|
| QueryParameter | pretty | If 'true', then the output is pretty printed. | false | string | |
| QueryParameter | labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. | false | string | |
| QueryParameter | fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. | false | string | |
| QueryParameter | watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | false | boolean | |
| QueryParameter | resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. | false | string | |
| QueryParameter | timeoutSeconds | Timeout for the list/watch call. | false | integer | |
| PathParameter | name | name of the User | true | string |
2.2.339.2. Responses Copy linkLink copied to clipboard!
| HTTP Code | Description | Schema |
|---|---|---|
| 200 | success |
2.2.339.3. Consumes Copy linkLink copied to clipboard!
- /
2.2.339.4. Produces Copy linkLink copied to clipboard!
- application/json
- application/json;stream=watch
- application/vnd.kubernetes.protobuf
- application/vnd.kubernetes.protobuf;stream=watch
2.2.339.5. Tags Copy linkLink copied to clipboard!
- oapiv1
2.3. Definitions Copy linkLink copied to clipboard!
2.3.1. patch.Object Copy linkLink copied to clipboard!
represents an object patch, which may be any of: JSON patch (RFC 6902), JSON merge patch (RFC 7396), or the Kubernetes strategic merge patch
2.3.2. runtime.RawExtension Copy linkLink copied to clipboard!
this may be any JSON object with a 'kind' and 'apiVersion' field; and is preserved unmodified by processing
2.3.3. types.UID Copy linkLink copied to clipboard!
2.3.4. unversioned.APIResource Copy linkLink copied to clipboard!
APIResource specifies the name of a resource and whether it is namespaced.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| name | name is the name of the resource. | true | string | |
| namespaced | namespaced indicates if a resource is namespaced or not. | true | boolean | |
| kind | kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo') | true | string |
2.3.5. unversioned.APIResourceList Copy linkLink copied to clipboard!
APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| groupVersion | groupVersion is the group and version this APIResourceList is for. | true | string | |
| resources | resources contains the name of the resources and if they are namespaced. | true |
2.3.6. unversioned.LabelSelector Copy linkLink copied to clipboard!
A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| matchLabels | matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. | false | object | |
| matchExpressions | matchExpressions is a list of label selector requirements. The requirements are ANDed. | false |
2.3.7. unversioned.LabelSelectorRequirement Copy linkLink copied to clipboard!
A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| key | key is the label key that the selector applies to. | true | string | |
| operator | operator represents a key’s relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist. | true | string | |
| values | values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. | false | string array |
2.3.8. unversioned.ListMeta Copy linkLink copied to clipboard!
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| selfLink | SelfLink is a URL representing this object. Populated by the system. Read-only. | false | string | |
| resourceVersion | String that identifies the server’s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#concurrency-control-and-consistency | false | string |
2.3.9. unversioned.Patch Copy linkLink copied to clipboard!
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
2.3.10. unversioned.Status Copy linkLink copied to clipboard!
Status is a return value for calls that don’t return other objects.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard list metadata. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | ||
| status | Status of the operation. One of: "Success" or "Failure". More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#spec-and-status | false | string | |
| message | A human-readable description of the status of this operation. | false | string | |
| reason | A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. | false | string | |
| details | Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. | false | ||
| code | Suggested HTTP return code for this status, 0 if not set. | false | integer (int32) |
2.3.11. unversioned.StatusCause Copy linkLink copied to clipboard!
StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| reason | A machine-readable description of the cause of the error. If this value is empty there is no information available. | false | string | |
| message | A human-readable description of the cause of the error. This field may be presented as-is to a reader. | false | string | |
| field |
The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. | false | string |
2.3.12. unversioned.StatusDetails Copy linkLink copied to clipboard!
StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| name | The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described). | false | string | |
| group | The group attribute of the resource associated with the status StatusReason. | false | string | |
| kind | The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| causes | The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. | false | ||
| retryAfterSeconds | If specified, the time in seconds before the operation should be retried. | false | integer (int32) |
2.3.13. v1.AWSElasticBlockStoreVolumeSource Copy linkLink copied to clipboard!
Represents a Persistent Disk resource in AWS.
An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| volumeID | Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore | true | string | |
| fsType | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore | false | string | |
| partition | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). | false | integer (int32) | |
| readOnly | Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#awselasticblockstore | false | boolean |
2.3.14. v1.AppliedClusterResourceQuota Copy linkLink copied to clipboard!
AppliedClusterResourceQuota mirrors ClusterResourceQuota at a project scope, for projection into a project. It allows a project-admin to know which ClusterResourceQuotas are applied to his project and their associated usage.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | true | ||
| spec | Spec defines the desired quota | true | ||
| status | Status defines the actual enforced quota and its current usage | false |
2.3.15. v1.AppliedClusterResourceQuotaList Copy linkLink copied to clipboard!
AppliedClusterResourceQuotaList is a collection of AppliedClusterResourceQuotas
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| items | Items is a list of AppliedClusterResourceQuota | true |
2.3.16. v1.AzureDataDiskCachingMode Copy linkLink copied to clipboard!
2.3.17. v1.AzureDiskVolumeSource Copy linkLink copied to clipboard!
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| diskName | The Name of the data disk in the blob storage | true | string | |
| diskURI | The URI the data disk in the blob storage | true | string | |
| cachingMode | Host Caching mode: None, Read Only, Read Write. | false | ||
| fsType | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. | false | string | |
| readOnly | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. | false | boolean |
2.3.18. v1.AzureFileVolumeSource Copy linkLink copied to clipboard!
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| secretName | the name of secret that contains Azure Storage Account Name and Key | true | string | |
| shareName | Share Name | true | string | |
| readOnly | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. | false | boolean |
2.3.19. v1.BinaryBuildSource Copy linkLink copied to clipboard!
BinaryBuildSource describes a binary file to be used for the Docker and Source build strategies, where the file will be extracted and used as the build source.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| asFile |
asFile indicates that the provided binary input should be considered a single file within the build input. For example, specifying "webapp.war" would place the provided binary as | false | string |
2.3.20. v1.Build Copy linkLink copied to clipboard!
Build encapsulates the inputs needed to produce a new deployable image, as well as the status of the execution and a reference to the Pod which executed the build.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| spec | spec is all the inputs used to execute the build. | false | ||
| status | status is the current status of the build. | false |
2.3.21. v1.BuildConfig Copy linkLink copied to clipboard!
Build configurations define a build process for new Docker images. There are three types of builds possible - a Docker build using a Dockerfile, a Source-to-Image build that uses a specially prepared base image that accepts source code that it can make runnable, and a custom build that can run // arbitrary Docker images as a base and accept the build parameters. Builds run on the cluster and on completion are pushed to the Docker registry specified in the "output" section. A build can be triggered via a webhook, when the base image changes, or when a user manually requests a new build be // created.
Each build created by a build configuration is numbered and refers back to its parent configuration. Multiple builds can be triggered at once. Builds that do not have "output" set can be used to test code or run a verification build.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | metadata for BuildConfig. | false | ||
| spec | spec holds all the input necessary to produce a new build, and the conditions when to trigger them. | true | ||
| status | status holds any relevant information about a build config | true |
2.3.22. v1.BuildConfigList Copy linkLink copied to clipboard!
BuildConfigList is a collection of BuildConfigs.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | metadata for BuildConfigList. | false | ||
| items | items is a list of build configs | true |
2.3.23. v1.BuildConfigSpec Copy linkLink copied to clipboard!
BuildConfigSpec describes when and how builds are created
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| triggers | triggers determine how new Builds can be launched from a BuildConfig. If no triggers are defined, a new build can only occur as a result of an explicit client build creation. | true | ||
| runPolicy | RunPolicy describes how the new build created from this build configuration will be scheduled for execution. This is optional, if not specified we default to "Serial". | false | string | |
| serviceAccount | serviceAccount is the name of the ServiceAccount to use to run the pod created by this build. The pod will be allowed to use secrets referenced by the ServiceAccount | false | string | |
| source | source describes the SCM in use. | false | ||
| revision | revision is the information from the source for a specific repo snapshot. This is optional. | false | ||
| strategy | strategy defines how to perform a build. | true | ||
| output | output describes the Docker image the Strategy should produce. | false | ||
| resources | resources computes resource requirements to execute the build. | false | ||
| postCommit | postCommit is a build hook executed after the build output image is committed, before it is pushed to a registry. | false | ||
| completionDeadlineSeconds | completionDeadlineSeconds is an optional duration in seconds, counted from the time when a build pod gets scheduled in the system, that the build may be active on a node before the system actively tries to terminate the build; value must be positive integer | false | integer (int64) | |
| nodeSelector | nodeSelector is a selector which must be true for the build pod to fit on a node If nil, it can be overridden by default build nodeselector values for the cluster. If set to an empty map or a map with any values, default build nodeselector values are ignored. | true | object |
2.3.24. v1.BuildConfigStatus Copy linkLink copied to clipboard!
BuildConfigStatus contains current state of the build config object.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| lastVersion | lastVersion is used to inform about number of last triggered build. | true | integer (int64) |
2.3.25. v1.BuildList Copy linkLink copied to clipboard!
BuildList is a collection of Builds.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | metadata for BuildList. | false | ||
| items | items is a list of builds | true |
2.3.26. v1.BuildLog Copy linkLink copied to clipboard!
BuildLog is the (unused) resource associated with the build log redirector
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string |
2.3.27. v1.BuildOutput Copy linkLink copied to clipboard!
BuildOutput is input to a build strategy and describes the Docker image that the strategy should produce.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| to | to defines an optional location to push the output of this build to. Kind must be one of 'ImageStreamTag' or 'DockerImage'. This value will be used to look up a Docker image repository to push to. In the case of an ImageStreamTag, the ImageStreamTag will be looked for in the namespace of the build unless Namespace is specified. | false | ||
| pushSecret | PushSecret is the name of a Secret that would be used for setting up the authentication for executing the Docker push to authentication enabled Docker Registry (or Docker Hub). | false | ||
| imageLabels | imageLabels define a list of labels that are applied to the resulting image. If there are multiple labels with the same name then the last one in the list is used. | false |
2.3.28. v1.BuildPostCommitSpec Copy linkLink copied to clipboard!
A BuildPostCommitSpec holds a build post commit hook specification. The hook executes a command in a temporary container running the build output image, immediately after the last layer of the image is committed and before the image is pushed to a registry. The command is executed with the current working directory ($PWD) set to the image’s WORKDIR.
The build will be marked as failed if the hook execution fails. It will fail if the script or command return a non-zero exit code, or if there is any other error related to starting the temporary container.
There are five different ways to configure the hook. As an example, all forms below are equivalent and will execute rake test --verbose.
Shell script:
"postCommit": { "script": "rake test --verbose", }"postCommit": { "script": "rake test --verbose", }Copy to Clipboard Copied! Toggle word wrap Toggle overflow The above is a convenient form which is equivalent to:
The above is a convenient form which is equivalent to:Copy to Clipboard Copied! Toggle word wrap Toggle overflow "postCommit": { "command": ["/bin/sh", "-ic"], "args": ["rake test --verbose"] }"postCommit": { "command": ["/bin/sh", "-ic"], "args": ["rake test --verbose"] }Copy to Clipboard Copied! Toggle word wrap Toggle overflow A command as the image entrypoint:
"postCommit": { "commit": ["rake", "test", "--verbose"] }"postCommit": { "commit": ["rake", "test", "--verbose"] }Copy to Clipboard Copied! Toggle word wrap Toggle overflow Command overrides the image entrypoint in the exec form, as documented in Docker: https://docs.docker.com/engine/reference/builder/#entrypoint.
Command overrides the image entrypoint in the exec form, as documented in Docker: https://docs.docker.com/engine/reference/builder/#entrypoint.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Pass arguments to the default entrypoint:
"postCommit": { "args": ["rake", "test", "--verbose"] }"postCommit": { "args": ["rake", "test", "--verbose"] }Copy to Clipboard Copied! Toggle word wrap Toggle overflow This form is only useful if the image entrypoint can handle arguments.
This form is only useful if the image entrypoint can handle arguments.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Shell script with arguments:
"postCommit": { "script": "rake test $1", "args": ["--verbose"] }"postCommit": { "script": "rake test $1", "args": ["--verbose"] }Copy to Clipboard Copied! Toggle word wrap Toggle overflow This form is useful if you need to pass arguments that would otherwise be hard to quote properly in the shell script. In the script, $0 will be "/bin/sh" and $1, $2, etc, are the positional arguments from Args.
This form is useful if you need to pass arguments that would otherwise be hard to quote properly in the shell script. In the script, $0 will be "/bin/sh" and $1, $2, etc, are the positional arguments from Args.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Command with arguments:
"postCommit": { "command": ["rake", "test"], "args": ["--verbose"] }"postCommit": { "command": ["rake", "test"], "args": ["--verbose"] }Copy to Clipboard Copied! Toggle word wrap Toggle overflow This form is equivalent to appending the arguments to the Command slice.
This form is equivalent to appending the arguments to the Command slice.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
It is invalid to provide both Script and Command simultaneously. If none of the fields are specified, the hook is not executed.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| command |
command is the command to run. It may not be specified with Script. This might be needed if the image doesn’t have | false | string array | |
| args | args is a list of arguments that are provided to either Command, Script or the Docker image’s default entrypoint. The arguments are placed immediately after the command to be run. | false | string array | |
| script |
script is a shell script to be run with | false | string |
2.3.29. v1.BuildRequest Copy linkLink copied to clipboard!
BuildRequest is the resource used to pass parameters to build generator
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | metadata for BuildRequest. | false | ||
| revision | revision is the information from the source for a specific repo snapshot. | false | ||
| triggeredByImage | triggeredByImage is the Image that triggered this build. | false | ||
| from | from is the reference to the ImageStreamTag that triggered the build. | false | ||
| binary | binary indicates a request to build from a binary provided to the builder | false | ||
| lastVersion | lastVersion (optional) is the LastVersion of the BuildConfig that was used to generate the build. If the BuildConfig in the generator doesn’t match, a build will not be generated. | false | integer (int64) | |
| env | env contains additional environment variables you want to pass into a builder container | false | ||
| triggeredBy | triggeredBy describes which triggers started the most recent update to the build configuration and contains information about those triggers. | true |
2.3.30. v1.BuildSource Copy linkLink copied to clipboard!
BuildSource is the SCM used for the build.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| type | type of build input to accept | true | string | |
| binary | binary builds accept a binary as their input. The binary is generally assumed to be a tar, gzipped tar, or zip file depending on the strategy. For Docker builds, this is the build context and an optional Dockerfile may be specified to override any Dockerfile in the build context. For Source builds, this is assumed to be an archive as described above. For Source and Docker builds, if binary.asFile is set the build will receive a directory with a single file. contextDir may be used when an archive is provided. Custom builds will receive this binary as input on STDIN. | false | ||
| dockerfile | dockerfile is the raw contents of a Dockerfile which should be built. When this option is specified, the FROM may be modified based on your strategy base image and additional ENV stanzas from your strategy environment will be added after the FROM, but before the rest of your Dockerfile stanzas. The Dockerfile source type may be used with other options like git - in those cases the Git repo will have any innate Dockerfile replaced in the context dir. | false | string | |
| git | git contains optional information about git build source | false | ||
| images | images describes a set of images to be used to provide source for the build | false | ||
| contextDir | contextDir specifies the sub-directory where the source code for the application exists. This allows to have buildable sources in directory other than root of repository. | false | string | |
| sourceSecret | sourceSecret is the name of a Secret that would be used for setting up the authentication for cloning private repository. The secret contains valid credentials for remote repository, where the data’s key represent the authentication method to be used and value is the base64 encoded credentials. Supported auth methods are: ssh-privatekey. | false | ||
| secrets | secrets represents a list of secrets and their destinations that will be used only for the build. | false |
2.3.31. v1.BuildSpec Copy linkLink copied to clipboard!
BuildSpec has the information to represent a build and also additional information about a build
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| serviceAccount | serviceAccount is the name of the ServiceAccount to use to run the pod created by this build. The pod will be allowed to use secrets referenced by the ServiceAccount | false | string | |
| source | source describes the SCM in use. | false | ||
| revision | revision is the information from the source for a specific repo snapshot. This is optional. | false | ||
| strategy | strategy defines how to perform a build. | true | ||
| output | output describes the Docker image the Strategy should produce. | false | ||
| resources | resources computes resource requirements to execute the build. | false | ||
| postCommit | postCommit is a build hook executed after the build output image is committed, before it is pushed to a registry. | false | ||
| completionDeadlineSeconds | completionDeadlineSeconds is an optional duration in seconds, counted from the time when a build pod gets scheduled in the system, that the build may be active on a node before the system actively tries to terminate the build; value must be positive integer | false | integer (int64) | |
| nodeSelector | nodeSelector is a selector which must be true for the build pod to fit on a node If nil, it can be overridden by default build nodeselector values for the cluster. If set to an empty map or a map with any values, default build nodeselector values are ignored. | true | object | |
| triggeredBy | triggeredBy describes which triggers started the most recent update to the build configuration and contains information about those triggers. | true |
2.3.32. v1.BuildStatus Copy linkLink copied to clipboard!
BuildStatus contains the status of a build
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| phase | phase is the point in the build lifecycle. | true | string | |
| cancelled | cancelled describes if a cancel event was triggered for the build. | false | boolean | |
| reason | reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI. | false | string | |
| message | message is a human-readable message indicating details about why the build has this status. | false | string | |
| startTimestamp | startTimestamp is a timestamp representing the server time when this Build started running in a Pod. It is represented in RFC3339 form and is in UTC. | false | string | |
| completionTimestamp | completionTimestamp is a timestamp representing the server time when this Build was finished, whether that build failed or succeeded. It reflects the time at which the Pod running the Build terminated. It is represented in RFC3339 form and is in UTC. | false | string | |
| duration | duration contains time.Duration object describing build time. | false | time.Duration | |
| outputDockerImageReference | outputDockerImageReference contains a reference to the Docker image that will be built by this build. Its value is computed from Build.Spec.Output.To, and should include the registry address, so that it can be used to push and pull the image. | false | string | |
| config | config is an ObjectReference to the BuildConfig this Build is based on. | false |
2.3.33. v1.BuildStrategy Copy linkLink copied to clipboard!
BuildStrategy contains the details of how to perform a build.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| type | type is the kind of build strategy. | true | string | |
| dockerStrategy | dockerStrategy holds the parameters to the Docker build strategy. | false | ||
| sourceStrategy | sourceStrategy holds the parameters to the Source build strategy. | false | ||
| customStrategy | customStrategy holds the parameters to the Custom build strategy | false | ||
| jenkinsPipelineStrategy | JenkinsPipelineStrategy holds the parameters to the Jenkins Pipeline build strategy. This strategy is in tech preview. | false |
2.3.34. v1.BuildTriggerCause Copy linkLink copied to clipboard!
BuildTriggerCause holds information about a triggered build. It is used for displaying build trigger data for each build and build configuration in oc describe. It is also used to describe which triggers led to the most recent update in the build configuration.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| message | message is used to store a human readable message for why the build was triggered. E.g.: "Manually triggered by user", "Configuration change",etc. | false | string | |
| genericWebHook | genericWebHook holds data about a builds generic webhook trigger. | false | ||
| githubWebHook | gitHubWebHook represents data for a GitHub webhook that fired a specific build. | false | ||
| imageChangeBuild | imageChangeBuild stores information about an imagechange event that triggered a new build. | false |
2.3.35. v1.BuildTriggerPolicy Copy linkLink copied to clipboard!
BuildTriggerPolicy describes a policy for a single trigger that results in a new Build.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| type | type is the type of build trigger | true | string | |
| github | github contains the parameters for a GitHub webhook type of trigger | false | ||
| generic | generic contains the parameters for a Generic webhook type of trigger | false | ||
| imageChange | imageChange contains parameters for an ImageChange type of trigger | false |
2.3.36. v1.Capabilities Copy linkLink copied to clipboard!
Adds and removes POSIX capabilities from running containers.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| add | Added capabilities | false | ||
| drop | Removed capabilities | false |
2.3.37. v1.Capability Copy linkLink copied to clipboard!
2.3.38. v1.CephFSVolumeSource Copy linkLink copied to clipboard!
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| monitors | Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it | true | string array | |
| path | Optional: Used as the mounted root, rather than the full Ceph tree, default is / | false | string | |
| user | Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it | false | string | |
| secretFile | Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it | false | string | |
| secretRef | Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it | false | ||
| readOnly | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.4/examples/volumes/cephfs/README.md#how-to-use-it | false | boolean |
2.3.39. v1.CinderVolumeSource Copy linkLink copied to clipboard!
Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| volumeID | volume id used to identify the volume in cinder More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md | true | string | |
| fsType | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md | false | string | |
| readOnly | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/release-1.4/examples/mysql-cinder-pd/README.md | false | boolean |
2.3.40. v1.ClusterNetwork Copy linkLink copied to clipboard!
ClusterNetwork describes the cluster network. There is normally only one object of this type, named "default", which is created by the SDN network plugin based on the master configuration when the cluster is brought up for the first time.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| network | Network is a CIDR string specifying the global overlay network’s L3 space | true | string | |
| hostsubnetlength | HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods | true | integer | |
| serviceNetwork | ServiceNetwork is the CIDR range that Service IP addresses are allocated from | true | string | |
| pluginName | PluginName is the name of the network plugin being used | false | string |
2.3.41. v1.ClusterNetworkList Copy linkLink copied to clipboard!
ClusterNetworkList is a collection of ClusterNetworks
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| items | Items is the list of cluster networks | true |
2.3.42. v1.ClusterPolicy Copy linkLink copied to clipboard!
ClusterPolicy is a object that holds all the ClusterRoles for a particular namespace. There is at most one ClusterPolicy document per namespace.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| lastModified | LastModified is the last time that any part of the ClusterPolicy was created, updated, or deleted | true | string | |
| roles | Roles holds all the ClusterRoles held by this ClusterPolicy, mapped by ClusterRole.Name | true |
2.3.43. v1.ClusterPolicyBinding Copy linkLink copied to clipboard!
ClusterPolicyBinding is a object that holds all the ClusterRoleBindings for a particular namespace. There is one ClusterPolicyBinding document per referenced ClusterPolicy namespace
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| lastModified | LastModified is the last time that any part of the ClusterPolicyBinding was created, updated, or deleted | true | string | |
| policyRef | PolicyRef is a reference to the ClusterPolicy that contains all the ClusterRoles that this ClusterPolicyBinding’s RoleBindings may reference | true | ||
| roleBindings | RoleBindings holds all the ClusterRoleBindings held by this ClusterPolicyBinding, mapped by ClusterRoleBinding.Name | true |
2.3.44. v1.ClusterPolicyBindingList Copy linkLink copied to clipboard!
ClusterPolicyBindingList is a collection of ClusterPolicyBindings
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| items | Items is a list of ClusterPolicyBindings | true |
2.3.45. v1.ClusterPolicyList Copy linkLink copied to clipboard!
ClusterPolicyList is a collection of ClusterPolicies
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| items | Items is a list of ClusterPolicies | true |
2.3.46. v1.ClusterResourceQuota Copy linkLink copied to clipboard!
ClusterResourceQuota mirrors ResourceQuota at a cluster scope. This object is easily convertible to synthetic ResourceQuota object to allow quota evaluation re-use.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | true | ||
| spec | Spec defines the desired quota | true | ||
| status | Status defines the actual enforced quota and its current usage | false |
2.3.47. v1.ClusterResourceQuotaList Copy linkLink copied to clipboard!
ClusterResourceQuotaList is a collection of ClusterResourceQuotas
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| items | Items is a list of ClusterResourceQuotas | true |
2.3.48. v1.ClusterResourceQuotaSelector Copy linkLink copied to clipboard!
ClusterResourceQuotaSelector is used to select projects. At least one of LabelSelector or AnnotationSelector must present. If only one is present, it is the only selection criteria. If both are specified, the project must match both restrictions.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| labels | LabelSelector is used to select projects by label. | true | ||
| annotations | AnnotationSelector is used to select projects by annotation. | true | object |
2.3.49. v1.ClusterResourceQuotaSpec Copy linkLink copied to clipboard!
ClusterResourceQuotaSpec defines the desired quota restrictions
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| selector | Selector is the selector used to match projects. It should only select active projects on the scale of dozens (though it can select many more less active projects). These projects will contend on object creation through this resource. | true | ||
| quota | Quota defines the desired quota | true |
2.3.50. v1.ClusterResourceQuotaStatus Copy linkLink copied to clipboard!
ClusterResourceQuotaStatus defines the actual enforced quota and its current usage
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| total | Total defines the actual enforced quota and its current usage across all projects | true | ||
| namespaces | Namespaces slices the usage by project. This division allows for quick resolution of deletion reconcilation inside of a single project without requiring a recalculation across all projects. This can be used to pull the deltas for a given project. | true |
2.3.51. v1.ClusterRole Copy linkLink copied to clipboard!
ClusterRole is a logical grouping of PolicyRules that can be referenced as a unit by ClusterRoleBindings.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| rules | Rules holds all the PolicyRules for this ClusterRole | true |
2.3.52. v1.ClusterRoleBinding Copy linkLink copied to clipboard!
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference any ClusterRole in the same namespace or in the global namespace. It adds who information via (Users and Groups) OR Subjects and namespace information by which namespace it exists in. ClusterRoleBindings in a given namespace only have effect in that namespace (excepting the master namespace which has power in all namespaces).
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| userNames | UserNames holds all the usernames directly bound to the role. This field should only be specified when supporting legacy clients and servers. See Subjects for further details. | true | string array | |
| groupNames | GroupNames holds all the groups directly bound to the role. This field should only be specified when supporting legacy clients and servers. See Subjects for further details. | true | string array | |
| subjects | Subjects hold object references to authorize with this rule. This field is ignored if UserNames or GroupNames are specified to support legacy clients and servers. Thus newer clients that do not need to support backwards compatibility should send only fully qualified Subjects and should omit the UserNames and GroupNames fields. Clients that need to support backwards compatibility can use this field to build the UserNames and GroupNames. | true | ||
| roleRef | RoleRef can only reference the current namespace and the global namespace. If the ClusterRoleRef cannot be resolved, the Authorizer must return an error. Since Policy is a singleton, this is sufficient knowledge to locate a role. | true |
2.3.53. v1.ClusterRoleBindingList Copy linkLink copied to clipboard!
ClusterRoleBindingList is a collection of ClusterRoleBindings
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| items | Items is a list of ClusterRoleBindings | true |
2.3.54. v1.ClusterRoleList Copy linkLink copied to clipboard!
ClusterRoleList is a collection of ClusterRoles
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| metadata | Standard object’s metadata. | false | ||
| items | Items is a list of ClusterRoles | true |
2.3.55. v1.ClusterRoleScopeRestriction Copy linkLink copied to clipboard!
ClusterRoleScopeRestriction describes restrictions on cluster role scopes
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| roleNames | RoleNames is the list of cluster roles that can referenced. * means anything | true | string array | |
| namespaces | Namespaces is the list of namespaces that can be referenced. * means any of them (including *) | true | string array | |
| allowEscalation | AllowEscalation indicates whether you can request roles and their escalating resources | true | boolean |
2.3.56. v1.ConfigMapKeySelector Copy linkLink copied to clipboard!
Selects a key from a ConfigMap.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| name | Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names | false | string | |
| key | The key to select. | true | string |
2.3.57. v1.ConfigMapVolumeSource Copy linkLink copied to clipboard!
Adapts a ConfigMap into a volume.
The contents of the target ConfigMap’s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| name | Name of the referent. More info: http://releases.k8s.io/release-1.4/docs/user-guide/identifiers.md#names | false | string | |
| items | If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error. Paths must be relative and may not contain the '..' path or start with '..'. | false | ||
| defaultMode | Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. | false | integer (int32) |
2.3.58. v1.Container Copy linkLink copied to clipboard!
A single application container that you want to run within a pod.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| name | Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. | true | string | |
| image | Docker image name. More info: http://releases.k8s.io/release-1.4/docs/user-guide/images.md | false | string | |
| command | Entrypoint array. Not executed within a shell. The docker image’s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container’s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double , ie: (VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/containers.md#containers-and-commands | false | string array | |
| args | Arguments to the entrypoint. The docker image’s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container’s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double , ie: (VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/containers.md#containers-and-commands | false | string array | |
| workingDir | Container’s working directory. If not specified, the container runtime’s default will be used, which might be configured in the container image. Cannot be updated. | false | string | |
| ports | List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. | false | ||
| env | List of environment variables to set in the container. Cannot be updated. | false | ||
| resources | Compute Resources required by this container. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/persistent-volumes.md#resources | false | ||
| volumeMounts | Pod volumes to mount into the container’s filesystem. Cannot be updated. | false | ||
| livenessProbe | Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes | false | ||
| readinessProbe | Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/pod-states.md#container-probes | false | ||
| lifecycle | Actions that the management system should take in response to container lifecycle events. Cannot be updated. | false | ||
| terminationMessagePath | Optional: Path at which the file to which the container’s termination message will be written is mounted into the container’s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Defaults to /dev/termination-log. Cannot be updated. | false | string | |
| imagePullPolicy | Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: http://releases.k8s.io/release-1.4/docs/user-guide/images.md#updating-images | false | string | |
| securityContext | Security options the pod should run with. More info: http://releases.k8s.io/release-1.4/docs/design/security_context.md | false | ||
| stdin | Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. | false | boolean | |
| stdinOnce | Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false | false | boolean | |
| tty | Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. | false | boolean |
2.3.59. v1.ContainerPort Copy linkLink copied to clipboard!
ContainerPort represents a network port in a single container.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| name | If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. | false | string | |
| hostPort | Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. | false | integer (int32) | |
| containerPort | Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536. | true | integer (int32) | |
| protocol | Protocol for port. Must be UDP or TCP. Defaults to "TCP". | false | string | |
| hostIP | What host IP to bind the external port to. | false | string |
2.3.60. v1.CustomBuildStrategy Copy linkLink copied to clipboard!
CustomBuildStrategy defines input parameters specific to Custom build.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| from | from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which the docker image should be pulled | true | ||
| pullSecret | pullSecret is the name of a Secret that would be used for setting up the authentication for pulling the Docker images from the private Docker registries | false | ||
| env | env contains additional environment variables you want to pass into a builder container | false | ||
| exposeDockerSocket | exposeDockerSocket will allow running Docker commands (and build Docker images) from inside the Docker container. | false | boolean | |
| forcePull | forcePull describes if the controller should configure the build pod to always pull the images for the builder or only pull if it is not present locally | false | boolean | |
| secrets | secrets is a list of additional secrets that will be included in the build pod | false | ||
| buildAPIVersion | buildAPIVersion is the requested API version for the Build object serialized and passed to the custom builder | false | string |
2.3.61. v1.CustomDeploymentStrategyParams Copy linkLink copied to clipboard!
CustomDeploymentStrategyParams are the input to the Custom deployment strategy.
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| image | Image specifies a Docker image which can carry out a deployment. | false | string | |
| environment | Environment holds the environment which will be given to the container for Image. | false | ||
| command | Command is optional and overrides CMD in the container Image. | false | string array |
2.3.62. v1.DeleteOptions Copy linkLink copied to clipboard!
DeleteOptions may be provided when deleting an API object
| Name | Description | Required | Schema | Default |
|---|---|---|---|---|
| kind | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#types-kinds | false | string | |
| apiVersion | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/release-1.4/docs/devel/api-conventions.md#resources | false | string | |
| gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the defau |