Merge pull request #5371 from bjhaid/master

Add an entry for `DELETE` on a collection of resources.
This commit is contained in:
Kubernetes Prow Robot 2021-01-04 11:41:56 -08:00 committed by GitHub
commit 22e4475215
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -629,11 +629,13 @@ duration in seconds before the object should be deleted. Individual kinds may
declare fields which provide a default grace period, and different kinds may
have differing kind-wide default grace periods. A user provided grace period
overrides a default grace period, including the zero grace period ("now").
* DELETE /<resourceNamePlural> - Deletes a list of type
<resourceName>, e.g. DELETE /pods a list of Pods.
* PUT /<resourceNamePlural>/<name> - Update or create the resource
with the given name with the JSON object provided by the client.
* PATCH /<resourceNamePlural>/<name> - Selectively modify the
specified fields of the resource. See more information [below](#patch-operations).
* GET /<resourceNamePlural>&watch=true - Receive a stream of JSON
* GET /<resourceNamePlural>?watch=true - Receive a stream of JSON
objects corresponding to changes made to any resource of the given kind over
time.