Skip to content

Commit 2199f73

Browse files
committed
Add an entry for DELETE on a collection of resources.
This adds an entry that matches the `GET` on a list of resources.
1 parent ecbc73a commit 2199f73

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

contributors/devel/sig-architecture/api-conventions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,11 +630,13 @@ duration in seconds before the object should be deleted. Individual kinds may
630630
declare fields which provide a default grace period, and different kinds may
631631
have differing kind-wide default grace periods. A user provided grace period
632632
overrides a default grace period, including the zero grace period ("now").
633+
* DELETE /<resourceNamePlural> - Deletes a list of type
634+
<resourceName>, e.g. DELETE /pods a list of Pods.
633635
* PUT /<resourceNamePlural>/<name> - Update or create the resource
634636
with the given name with the JSON object provided by the client.
635637
* PATCH /<resourceNamePlural>/<name> - Selectively modify the
636638
specified fields of the resource. See more information [below](#patch-operations).
637-
* GET /<resourceNamePlural>&watch=true - Receive a stream of JSON
639+
* GET /<resourceNamePlural>?watch=true - Receive a stream of JSON
638640
objects corresponding to changes made to any resource of the given kind over
639641
time.
640642

0 commit comments

Comments
 (0)