Skip to content

Commit 5c6d90b

Browse files
authored
Custom objects spec: Add allowWatchBookmarks, resoureVersionMatch parameters (#180)
1 parent 7ba97cc commit 5c6d90b

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

openapi/custom_objects_spec.json

+28
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@
4747
"https"
4848
],
4949
"parameters": [
50+
{
51+
"description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
52+
"in": "query",
53+
"name": "allowWatchBookmarks",
54+
"type": "boolean",
55+
"uniqueItems": true
56+
},
5057
{
5158
"uniqueItems": true,
5259
"type": "string",
@@ -82,6 +89,13 @@
8289
"name": "resourceVersion",
8390
"in": "query"
8491
},
92+
{
93+
"description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
94+
"in": "query",
95+
"name": "resourceVersionMatch",
96+
"type": "string",
97+
"uniqueItems": true
98+
},
8599
{
86100
"uniqueItems": true,
87101
"type": "integer",
@@ -278,6 +292,13 @@
278292
"https"
279293
],
280294
"parameters": [
295+
{
296+
"description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.",
297+
"in": "query",
298+
"name": "allowWatchBookmarks",
299+
"type": "boolean",
300+
"uniqueItems": true
301+
},
281302
{
282303
"uniqueItems": true,
283304
"type": "string",
@@ -313,6 +334,13 @@
313334
"name": "resourceVersion",
314335
"in": "query"
315336
},
337+
{
338+
"description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
339+
"in": "query",
340+
"name": "resourceVersionMatch",
341+
"type": "string",
342+
"uniqueItems": true
343+
},
316344
{
317345
"uniqueItems": true,
318346
"type": "integer",

0 commit comments

Comments
 (0)