summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2021-01-04 11:41:56 -0800
committerGitHub <noreply@github.com>2021-01-04 11:41:56 -0800
commit22e4475215812de613d2f42e1cbe1a87df4b8f4b (patch)
tree755154bf47353802d9ac7c391d0d79b43ad49ab4
parentf1fbf07c3573e1b8f0799d6b79a95ce9e17cca8a (diff)
parent2199f730a519076f0eb231c166c9fd48289b2873 (diff)
Merge pull request #5371 from bjhaid/master
Add an entry for `DELETE` on a collection of resources.
-rw-r--r--contributors/devel/sig-architecture/api-conventions.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/contributors/devel/sig-architecture/api-conventions.md b/contributors/devel/sig-architecture/api-conventions.md
index eecda00c..6def7d50 100644
--- a/contributors/devel/sig-architecture/api-conventions.md
+++ b/contributors/devel/sig-architecture/api-conventions.md
@@ -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 /&lt;resourceNamePlural&gt; - Deletes a list of type
+&lt;resourceName&gt;, e.g. DELETE /pods a list of Pods.
* PUT /&lt;resourceNamePlural&gt;/&lt;name&gt; - Update or create the resource
with the given name with the JSON object provided by the client.
* PATCH /&lt;resourceNamePlural&gt;/&lt;name&gt; - Selectively modify the
specified fields of the resource. See more information [below](#patch-operations).
-* GET /&lt;resourceNamePlural&gt;&amp;watch=true - Receive a stream of JSON
+* GET /&lt;resourceNamePlural&gt;&quest;watch=true - Receive a stream of JSON
objects corresponding to changes made to any resource of the given kind over
time.