You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add allowWatchBookmarks, resoureVersionMatch parameters to custom objects. [kubernetes-client/gen#180](https://github.com/kubernetes-client/gen/pull/180)
13
+
11
14
**Bug Fix:**
12
15
- fix: load cache error when CacheDecoder object is not callable [kubernetes-client/python-base#226](https://github.com/kubernetes-client/python-base/pull/226)
13
16
- raise exception when an empty config file is passed to load_kube_config [kubernetes-client/python-base#223](https://github.com/kubernetes-client/python-base/pull/223)
Copy file name to clipboardExpand all lines: scripts/swagger.json
+28
Original file line number
Diff line number
Diff line change
@@ -108705,6 +108705,13 @@
108705
108705
],
108706
108706
"description": "list or watch namespace scoped custom objects",
108707
108707
"parameters": [
108708
+
{
108709
+
"uniqueItems": true,
108710
+
"type": "boolean",
108711
+
"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.",
108712
+
"name": "allowWatchBookmarks",
108713
+
"in": "query"
108714
+
},
108708
108715
{
108709
108716
"uniqueItems": true,
108710
108717
"in": "query",
@@ -108740,6 +108747,13 @@
108740
108747
"description": "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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
108741
108748
"name": "resourceVersion"
108742
108749
},
108750
+
{
108751
+
"uniqueItems": true,
108752
+
"type": "string",
108753
+
"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",
108754
+
"name": "resourceVersionMatch",
108755
+
"in": "query"
108756
+
},
108743
108757
{
108744
108758
"uniqueItems": true,
108745
108759
"in": "query",
@@ -108931,6 +108945,13 @@
108931
108945
],
108932
108946
"description": "list or watch cluster scoped custom objects",
108933
108947
"parameters": [
108948
+
{
108949
+
"uniqueItems": true,
108950
+
"type": "boolean",
108951
+
"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.",
108952
+
"name": "allowWatchBookmarks",
108953
+
"in": "query"
108954
+
},
108934
108955
{
108935
108956
"uniqueItems": true,
108936
108957
"in": "query",
@@ -108966,6 +108987,13 @@
108966
108987
"description": "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. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
108967
108988
"name": "resourceVersion"
108968
108989
},
108990
+
{
108991
+
"uniqueItems": true,
108992
+
"type": "string",
108993
+
"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",
0 commit comments