kubernator 1.0.12__py3-none-any.whl → 1.0.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kubernator might be problematic. Click here for more details.
- kubernator/__init__.py +1 -1
- kubernator/_json_path.py +113 -0
- kubernator/_k8s_client_patches.py +617 -0
- kubernator/api.py +66 -55
- kubernator/app.py +31 -8
- kubernator/merge.py +128 -0
- kubernator/plugins/k8s.py +37 -24
- kubernator/plugins/k8s_api.py +3 -2
- kubernator/plugins/minikube.py +1 -1
- kubernator/plugins/template.py +12 -5
- {kubernator-1.0.12.dist-info → kubernator-1.0.13.dist-info}/METADATA +4 -3
- kubernator-1.0.13.dist-info/RECORD +30 -0
- kubernator-1.0.12.dist-info/RECORD +0 -27
- {kubernator-1.0.12.dist-info → kubernator-1.0.13.dist-info}/WHEEL +0 -0
- {kubernator-1.0.12.dist-info → kubernator-1.0.13.dist-info}/entry_points.txt +0 -0
- {kubernator-1.0.12.dist-info → kubernator-1.0.13.dist-info}/namespace_packages.txt +0 -0
- {kubernator-1.0.12.dist-info → kubernator-1.0.13.dist-info}/top_level.txt +0 -0
- {kubernator-1.0.12.dist-info → kubernator-1.0.13.dist-info}/zip-safe +0 -0
|
@@ -0,0 +1,617 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright 2020 Express Systems USA, Inc
|
|
4
|
+
# Copyright 2024 Karellen, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#
|
|
18
|
+
|
|
19
|
+
# flake8: noqa
|
|
20
|
+
|
|
21
|
+
URLLIB_HEADERS_PATCH = ("@@ -2909,20 +2909,15 @@\n esp.\n-get\n headers\n-()\n %0A \n",
|
|
22
|
+
"kubernetes/client/exceptions.py", "http_resp.headers", None, None, "urllib_headers_patch")
|
|
23
|
+
CUSTOM_OBJECT_PATCH_23 = ("""@@ -2517,32 +2517,1022 @@
|
|
24
|
+
gicMergePatch).%0A
|
|
25
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
26
|
+
:param _
|
|
27
|
+
@@ -6004,32 +6004,1022 @@
|
|
28
|
+
gicMergePatch).%0A
|
|
29
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
30
|
+
:param _
|
|
31
|
+
@@ -8031,33 +8031,65 @@
|
|
32
|
+
'field_manager'
|
|
33
|
+
+,%0A 'field_validation'
|
|
34
|
+
%0A
|
|
35
|
+
%5D%0A
|
|
36
|
+
@@ -11267,32 +11267,255 @@
|
|
37
|
+
)) # noqa: E501
|
|
38
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
39
|
+
%0A%0A header
|
|
40
|
+
@@ -14268,32 +14268,1022 @@
|
|
41
|
+
icode/#IsPrint.%0A
|
|
42
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
43
|
+
:param _
|
|
44
|
+
@@ -17722,32 +17722,1022 @@
|
|
45
|
+
icode/#IsPrint.%0A
|
|
46
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
47
|
+
:param _
|
|
48
|
+
@@ -19774,33 +19774,65 @@
|
|
49
|
+
'field_manager'
|
|
50
|
+
+,%0A 'field_validation'
|
|
51
|
+
%0A
|
|
52
|
+
%5D%0A
|
|
53
|
+
@@ -23568,32 +23568,255 @@
|
|
54
|
+
)) # noqa: E501
|
|
55
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
56
|
+
%0A%0A header
|
|
57
|
+
@@ -36926,32 +36926,160 @@
|
|
58
|
+
pretty printed.%0A
|
|
59
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
60
|
+
:param i
|
|
61
|
+
@@ -40085,32 +40085,160 @@
|
|
62
|
+
pretty printed.%0A
|
|
63
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
64
|
+
:param i
|
|
65
|
+
@@ -42457,32 +42457,62 @@
|
|
66
|
+
'pretty',%0A
|
|
67
|
+
+ 'label_selector',%0A
|
|
68
|
+
'gra
|
|
69
|
+
@@ -45089,32 +45089,247 @@
|
|
70
|
+
) # noqa: E501%0A
|
|
71
|
+
+ if 'label_selector' in local_var_params and local_var_params%5B'label_selector'%5D is not None: # noqa: E501%0A query_params.append(('labelSelector', local_var_params%5B'label_selector'%5D)) # noqa: E501%0A
|
|
72
|
+
if 'grac
|
|
73
|
+
@@ -48371,32 +48371,160 @@
|
|
74
|
+
pretty printed.%0A
|
|
75
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
76
|
+
:param i
|
|
77
|
+
@@ -51650,32 +51650,160 @@
|
|
78
|
+
pretty printed.%0A
|
|
79
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
80
|
+
:param i
|
|
81
|
+
@@ -54047,32 +54047,62 @@
|
|
82
|
+
'pretty',%0A
|
|
83
|
+
+ 'label_selector',%0A
|
|
84
|
+
'gra
|
|
85
|
+
@@ -57245,32 +57245,247 @@
|
|
86
|
+
) # noqa: E501%0A
|
|
87
|
+
+ if 'label_selector' in local_var_params and local_var_params%5B'label_selector'%5D is not None: # noqa: E501%0A query_params.append(('labelSelector', local_var_params%5B'label_selector'%5D)) # noqa: E501%0A
|
|
88
|
+
if 'grac
|
|
89
|
+
@@ -157323,32 +157323,1022 @@
|
|
90
|
+
gicMergePatch).%0A
|
|
91
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
92
|
+
:param b
|
|
93
|
+
@@ -161012,32 +161012,1022 @@
|
|
94
|
+
gicMergePatch).%0A
|
|
95
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
96
|
+
:param b
|
|
97
|
+
@@ -163237,32 +163237,64 @@
|
|
98
|
+
field_manager',%0A
|
|
99
|
+
+ 'field_validation',%0A
|
|
100
|
+
'for
|
|
101
|
+
@@ -166808,32 +166808,255 @@
|
|
102
|
+
) # noqa: E501%0A
|
|
103
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
104
|
+
if 'forc
|
|
105
|
+
@@ -167725,32 +167725,63 @@
|
|
106
|
+
%5B'application/
|
|
107
|
+
+json-patch+json', 'application/
|
|
108
|
+
merge-patch+json
|
|
109
|
+
@@ -170267,32 +170267,1022 @@
|
|
110
|
+
gicMergePatch).%0A
|
|
111
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
112
|
+
:param b
|
|
113
|
+
@@ -173960,32 +173960,1022 @@
|
|
114
|
+
gicMergePatch).%0A
|
|
115
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
116
|
+
:param b
|
|
117
|
+
@@ -176185,32 +176185,64 @@
|
|
118
|
+
field_manager',%0A
|
|
119
|
+
+ 'field_validation',%0A
|
|
120
|
+
'for
|
|
121
|
+
@@ -179792,32 +179792,255 @@
|
|
122
|
+
) # noqa: E501%0A
|
|
123
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
124
|
+
if 'forc
|
|
125
|
+
@@ -180768,32 +180768,63 @@
|
|
126
|
+
%5B'application/
|
|
127
|
+
+json-patch+json', 'application/
|
|
128
|
+
merge-patch+json
|
|
129
|
+
@@ -183320,32 +183320,1022 @@
|
|
130
|
+
gicMergePatch).%0A
|
|
131
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
132
|
+
:param b
|
|
133
|
+
@@ -187018,32 +187018,1022 @@
|
|
134
|
+
gicMergePatch).%0A
|
|
135
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
136
|
+
:param b
|
|
137
|
+
@@ -189243,32 +189243,64 @@
|
|
138
|
+
field_manager',%0A
|
|
139
|
+
+ 'field_validation',%0A
|
|
140
|
+
'for
|
|
141
|
+
@@ -192856,32 +192856,255 @@
|
|
142
|
+
) # noqa: E501%0A
|
|
143
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
144
|
+
if 'forc
|
|
145
|
+
@@ -193832,32 +193832,63 @@
|
|
146
|
+
%5B'application/
|
|
147
|
+
+json-patch+json', 'application/
|
|
148
|
+
merge-patch+json
|
|
149
|
+
@@ -196491,32 +196491,1022 @@
|
|
150
|
+
gicMergePatch).%0A
|
|
151
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
152
|
+
:param b
|
|
153
|
+
@@ -200302,32 +200302,1022 @@
|
|
154
|
+
gicMergePatch).%0A
|
|
155
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
156
|
+
:param b
|
|
157
|
+
@@ -202552,32 +202552,64 @@
|
|
158
|
+
field_manager',%0A
|
|
159
|
+
+ 'field_validation',%0A
|
|
160
|
+
'for
|
|
161
|
+
@@ -206683,32 +206683,255 @@
|
|
162
|
+
) # noqa: E501%0A
|
|
163
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
164
|
+
if 'forc
|
|
165
|
+
@@ -207600,32 +207600,63 @@
|
|
166
|
+
%5B'application/
|
|
167
|
+
+json-patch+json', 'application/
|
|
168
|
+
merge-patch+json
|
|
169
|
+
@@ -210271,32 +210271,1022 @@
|
|
170
|
+
gicMergePatch).%0A
|
|
171
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
172
|
+
:param b
|
|
173
|
+
@@ -214084,32 +214084,1022 @@
|
|
174
|
+
gicMergePatch).%0A
|
|
175
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
176
|
+
:param b
|
|
177
|
+
@@ -216334,32 +216334,64 @@
|
|
178
|
+
field_manager',%0A
|
|
179
|
+
+ 'field_validation',%0A
|
|
180
|
+
'for
|
|
181
|
+
@@ -220507,32 +220507,255 @@
|
|
182
|
+
) # noqa: E501%0A
|
|
183
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
184
|
+
if 'forc
|
|
185
|
+
@@ -221483,32 +221483,63 @@
|
|
186
|
+
%5B'application/
|
|
187
|
+
+json-patch+json', 'application/
|
|
188
|
+
merge-patch+json
|
|
189
|
+
@@ -221530,32 +221530,64 @@
|
|
190
|
+
merge-patch+json
|
|
191
|
+
+', 'application/apply-patch+yaml
|
|
192
|
+
'%5D) # noqa: E50
|
|
193
|
+
@@ -224196,32 +224196,1022 @@
|
|
194
|
+
gicMergePatch).%0A
|
|
195
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
196
|
+
:param b
|
|
197
|
+
@@ -228014,32 +228014,1022 @@
|
|
198
|
+
gicMergePatch).%0A
|
|
199
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
200
|
+
:param b
|
|
201
|
+
@@ -230264,32 +230264,64 @@
|
|
202
|
+
field_manager',%0A
|
|
203
|
+
+ 'field_validation',%0A
|
|
204
|
+
'for
|
|
205
|
+
@@ -234444,32 +234444,255 @@
|
|
206
|
+
) # noqa: E501%0A
|
|
207
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
208
|
+
if 'forc
|
|
209
|
+
@@ -235420,32 +235420,63 @@
|
|
210
|
+
%5B'application/
|
|
211
|
+
+json-patch+json', 'application/
|
|
212
|
+
merge-patch+json
|
|
213
|
+
@@ -235467,32 +235467,64 @@
|
|
214
|
+
merge-patch+json
|
|
215
|
+
+', 'application/apply-patch+yaml
|
|
216
|
+
'%5D) # noqa: E50
|
|
217
|
+
@@ -237883,32 +237883,1022 @@
|
|
218
|
+
icode/#IsPrint.%0A
|
|
219
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
220
|
+
:param _
|
|
221
|
+
@@ -241233,32 +241233,1022 @@
|
|
222
|
+
icode/#IsPrint.%0A
|
|
223
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
224
|
+
:param _
|
|
225
|
+
@@ -243258,33 +243258,65 @@
|
|
226
|
+
'field_manager'
|
|
227
|
+
+,%0A 'field_validation'
|
|
228
|
+
%0A
|
|
229
|
+
%5D%0A
|
|
230
|
+
@@ -246821,32 +246821,255 @@
|
|
231
|
+
)) # noqa: E501
|
|
232
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
233
|
+
%0A%0A header
|
|
234
|
+
@@ -249716,32 +249716,1022 @@
|
|
235
|
+
icode/#IsPrint.%0A
|
|
236
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
237
|
+
:param _
|
|
238
|
+
@@ -253057,32 +253057,1022 @@
|
|
239
|
+
icode/#IsPrint.%0A
|
|
240
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
241
|
+
:param _
|
|
242
|
+
@@ -255082,33 +255082,65 @@
|
|
243
|
+
'field_manager'
|
|
244
|
+
+,%0A 'field_validation'
|
|
245
|
+
%0A
|
|
246
|
+
%5D%0A
|
|
247
|
+
@@ -258681,32 +258681,255 @@
|
|
248
|
+
)) # noqa: E501
|
|
249
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
250
|
+
%0A%0A header
|
|
251
|
+
@@ -261645,32 +261645,1022 @@
|
|
252
|
+
icode/#IsPrint.%0A
|
|
253
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
254
|
+
:param _
|
|
255
|
+
@@ -264991,32 +264991,1022 @@
|
|
256
|
+
icode/#IsPrint.%0A
|
|
257
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
258
|
+
:param _
|
|
259
|
+
@@ -267016,33 +267016,65 @@
|
|
260
|
+
'field_manager'
|
|
261
|
+
+,%0A 'field_validation'
|
|
262
|
+
%0A
|
|
263
|
+
%5D%0A
|
|
264
|
+
@@ -270621,32 +270621,255 @@
|
|
265
|
+
)) # noqa: E501
|
|
266
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
267
|
+
%0A%0A header
|
|
268
|
+
@@ -273705,32 +273705,1022 @@
|
|
269
|
+
icode/#IsPrint.%0A
|
|
270
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
271
|
+
:param _
|
|
272
|
+
@@ -277177,32 +277177,1022 @@
|
|
273
|
+
icode/#IsPrint.%0A
|
|
274
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
275
|
+
:param _
|
|
276
|
+
@@ -279227,33 +279227,65 @@
|
|
277
|
+
'field_manager'
|
|
278
|
+
+,%0A 'field_validation'
|
|
279
|
+
%0A
|
|
280
|
+
%5D%0A
|
|
281
|
+
@@ -283352,32 +283352,255 @@
|
|
282
|
+
)) # noqa: E501
|
|
283
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
284
|
+
%0A%0A header
|
|
285
|
+
@@ -286376,32 +286376,1022 @@
|
|
286
|
+
icode/#IsPrint.%0A
|
|
287
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
288
|
+
:param _
|
|
289
|
+
@@ -289837,32 +289837,1022 @@
|
|
290
|
+
icode/#IsPrint.%0A
|
|
291
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
292
|
+
:param _
|
|
293
|
+
@@ -291887,33 +291887,65 @@
|
|
294
|
+
'field_manager'
|
|
295
|
+
+,%0A 'field_validation'
|
|
296
|
+
%0A
|
|
297
|
+
%5D%0A
|
|
298
|
+
@@ -296054,32 +296054,255 @@
|
|
299
|
+
)) # noqa: E501
|
|
300
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
301
|
+
%0A%0A header
|
|
302
|
+
@@ -299147,32 +299147,1022 @@
|
|
303
|
+
icode/#IsPrint.%0A
|
|
304
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
305
|
+
:param _
|
|
306
|
+
@@ -302613,32 +302613,1022 @@
|
|
307
|
+
icode/#IsPrint.%0A
|
|
308
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
309
|
+
:param _
|
|
310
|
+
@@ -304671,17 +304671,49 @@
|
|
311
|
+
manager'
|
|
312
|
+
+,%0A 'field_validation'
|
|
313
|
+
%0A
|
|
314
|
+
|
|
315
|
+
@@ -308837,32 +308837,255 @@
|
|
316
|
+
)) # noqa: E501
|
|
317
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
318
|
+
%0A%0A header
|
|
319
|
+
""", "kubernetes/client/api/custom_objects_api.py", "field_validation", 23, 24, "field_validation_patch_23-24")
|
|
320
|
+
|
|
321
|
+
CUSTOM_OBJECT_PATCH_25 = ("""@@ -2532,32 +2532,1022 @@
|
|
322
|
+
%0A :param
|
|
323
|
+
+str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A :param
|
|
324
|
+
_preload_content
|
|
325
|
+
@@ -3587,32 +3587,32 @@
|
|
326
|
+
nse object will%0A
|
|
327
|
+
-
|
|
328
|
+
|
|
329
|
+
@@ -6004,32 +6004,1022 @@
|
|
330
|
+
gicMergePatch).%0A
|
|
331
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
332
|
+
:param _
|
|
333
|
+
@@ -8031,32 +8031,64 @@
|
|
334
|
+
'field_manager'
|
|
335
|
+
+,%0A 'field_validation'
|
|
336
|
+
%0A %5D%0A
|
|
337
|
+
@@ -11267,32 +11267,255 @@
|
|
338
|
+
)) # noqa: E501
|
|
339
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
340
|
+
%0A%0A header
|
|
341
|
+
@@ -14268,32 +14268,1022 @@
|
|
342
|
+
icode/#IsPrint.%0A
|
|
343
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
344
|
+
:param _
|
|
345
|
+
@@ -17722,32 +17722,1022 @@
|
|
346
|
+
icode/#IsPrint.%0A
|
|
347
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
348
|
+
:param _
|
|
349
|
+
@@ -19774,32 +19774,64 @@
|
|
350
|
+
'field_manager'
|
|
351
|
+
+,%0A 'field_validation'
|
|
352
|
+
%0A %5D%0A
|
|
353
|
+
@@ -23568,32 +23568,255 @@
|
|
354
|
+
)) # noqa: E501
|
|
355
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
356
|
+
%0A%0A header
|
|
357
|
+
@@ -36926,32 +36926,160 @@
|
|
358
|
+
pretty printed.%0A
|
|
359
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
360
|
+
:param i
|
|
361
|
+
@@ -40085,32 +40085,160 @@
|
|
362
|
+
pretty printed.%0A
|
|
363
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
364
|
+
:param i
|
|
365
|
+
@@ -42457,32 +42457,62 @@
|
|
366
|
+
'pretty',%0A
|
|
367
|
+
+ 'label_selector',%0A
|
|
368
|
+
'gra
|
|
369
|
+
@@ -45089,32 +45089,247 @@
|
|
370
|
+
) # noqa: E501%0A
|
|
371
|
+
+ if 'label_selector' in local_var_params and local_var_params%5B'label_selector'%5D is not None: # noqa: E501%0A query_params.append(('labelSelector', local_var_params%5B'label_selector'%5D)) # noqa: E501%0A
|
|
372
|
+
if 'grac
|
|
373
|
+
@@ -48371,32 +48371,160 @@
|
|
374
|
+
pretty printed.%0A
|
|
375
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
376
|
+
:param i
|
|
377
|
+
@@ -51650,32 +51650,160 @@
|
|
378
|
+
pretty printed.%0A
|
|
379
|
+
+ :param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.%0A
|
|
380
|
+
:param i
|
|
381
|
+
@@ -54047,32 +54047,62 @@
|
|
382
|
+
'pretty',%0A
|
|
383
|
+
+ 'label_selector',%0A
|
|
384
|
+
'gra
|
|
385
|
+
@@ -57245,32 +57245,247 @@
|
|
386
|
+
) # noqa: E501%0A
|
|
387
|
+
+ if 'label_selector' in local_var_params and local_var_params%5B'label_selector'%5D is not None: # noqa: E501%0A query_params.append(('labelSelector', local_var_params%5B'label_selector'%5D)) # noqa: E501%0A
|
|
388
|
+
if 'grac
|
|
389
|
+
@@ -163053,32 +163053,1022 @@
|
|
390
|
+
gicMergePatch).%0A
|
|
391
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
392
|
+
:param b
|
|
393
|
+
@@ -166742,32 +166742,1022 @@
|
|
394
|
+
gicMergePatch).%0A
|
|
395
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
396
|
+
:param b
|
|
397
|
+
@@ -168967,32 +168967,64 @@
|
|
398
|
+
field_manager',%0A
|
|
399
|
+
+ 'field_validation',%0A
|
|
400
|
+
'for
|
|
401
|
+
@@ -172538,32 +172538,255 @@
|
|
402
|
+
) # noqa: E501%0A
|
|
403
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
404
|
+
if 'forc
|
|
405
|
+
@@ -173455,32 +173455,63 @@
|
|
406
|
+
%5B'application/
|
|
407
|
+
+json-patch+json', 'application/
|
|
408
|
+
merge-patch+json
|
|
409
|
+
@@ -175997,32 +175997,1022 @@
|
|
410
|
+
gicMergePatch).%0A
|
|
411
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
412
|
+
:param b
|
|
413
|
+
@@ -179690,32 +179690,1022 @@
|
|
414
|
+
gicMergePatch).%0A
|
|
415
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
416
|
+
:param b
|
|
417
|
+
@@ -181915,32 +181915,64 @@
|
|
418
|
+
field_manager',%0A
|
|
419
|
+
+ 'field_validation',%0A
|
|
420
|
+
'for
|
|
421
|
+
@@ -185522,32 +185522,255 @@
|
|
422
|
+
) # noqa: E501%0A
|
|
423
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
424
|
+
if 'forc
|
|
425
|
+
@@ -186498,32 +186498,63 @@
|
|
426
|
+
%5B'application/
|
|
427
|
+
+json-patch+json', 'application/
|
|
428
|
+
merge-patch+json
|
|
429
|
+
@@ -189050,32 +189050,1022 @@
|
|
430
|
+
gicMergePatch).%0A
|
|
431
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
432
|
+
:param b
|
|
433
|
+
@@ -192748,32 +192748,1022 @@
|
|
434
|
+
gicMergePatch).%0A
|
|
435
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
436
|
+
:param b
|
|
437
|
+
@@ -194973,32 +194973,64 @@
|
|
438
|
+
field_manager',%0A
|
|
439
|
+
+ 'field_validation',%0A
|
|
440
|
+
'for
|
|
441
|
+
@@ -198586,32 +198586,255 @@
|
|
442
|
+
) # noqa: E501%0A
|
|
443
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
444
|
+
if 'forc
|
|
445
|
+
@@ -199562,32 +199562,63 @@
|
|
446
|
+
%5B'application/
|
|
447
|
+
+json-patch+json', 'application/
|
|
448
|
+
merge-patch+json
|
|
449
|
+
@@ -202221,32 +202221,1022 @@
|
|
450
|
+
gicMergePatch).%0A
|
|
451
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
452
|
+
:param b
|
|
453
|
+
@@ -206032,32 +206032,1022 @@
|
|
454
|
+
gicMergePatch).%0A
|
|
455
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
456
|
+
:param b
|
|
457
|
+
@@ -208282,32 +208282,64 @@
|
|
458
|
+
field_manager',%0A
|
|
459
|
+
+ 'field_validation',%0A
|
|
460
|
+
'for
|
|
461
|
+
@@ -212413,32 +212413,255 @@
|
|
462
|
+
) # noqa: E501%0A
|
|
463
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
464
|
+
if 'forc
|
|
465
|
+
@@ -213330,32 +213330,63 @@
|
|
466
|
+
%5B'application/
|
|
467
|
+
+json-patch+json', 'application/
|
|
468
|
+
merge-patch+json
|
|
469
|
+
@@ -216001,32 +216001,1022 @@
|
|
470
|
+
gicMergePatch).%0A
|
|
471
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
472
|
+
:param b
|
|
473
|
+
@@ -219814,32 +219814,1022 @@
|
|
474
|
+
gicMergePatch).%0A
|
|
475
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
476
|
+
:param b
|
|
477
|
+
@@ -222064,32 +222064,64 @@
|
|
478
|
+
field_manager',%0A
|
|
479
|
+
+ 'field_validation',%0A
|
|
480
|
+
'for
|
|
481
|
+
@@ -226237,32 +226237,255 @@
|
|
482
|
+
) # noqa: E501%0A
|
|
483
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
484
|
+
if 'forc
|
|
485
|
+
@@ -227213,32 +227213,63 @@
|
|
486
|
+
%5B'application/
|
|
487
|
+
+json-patch+json', 'application/
|
|
488
|
+
merge-patch+json
|
|
489
|
+
@@ -227260,32 +227260,64 @@
|
|
490
|
+
merge-patch+json
|
|
491
|
+
+', 'application/apply-patch+yaml
|
|
492
|
+
'%5D) # noqa: E50
|
|
493
|
+
@@ -229926,32 +229926,1022 @@
|
|
494
|
+
gicMergePatch).%0A
|
|
495
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
496
|
+
:param b
|
|
497
|
+
@@ -233744,32 +233744,1022 @@
|
|
498
|
+
gicMergePatch).%0A
|
|
499
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
500
|
+
:param b
|
|
501
|
+
@@ -235994,32 +235994,64 @@
|
|
502
|
+
field_manager',%0A
|
|
503
|
+
+ 'field_validation',%0A
|
|
504
|
+
'for
|
|
505
|
+
@@ -240174,32 +240174,255 @@
|
|
506
|
+
) # noqa: E501%0A
|
|
507
|
+
+ if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501%0A
|
|
508
|
+
if 'forc
|
|
509
|
+
@@ -241150,32 +241150,63 @@
|
|
510
|
+
%5B'application/
|
|
511
|
+
+json-patch+json', 'application/
|
|
512
|
+
merge-patch+json
|
|
513
|
+
@@ -241197,32 +241197,64 @@
|
|
514
|
+
merge-patch+json
|
|
515
|
+
+', 'application/apply-patch+yaml
|
|
516
|
+
'%5D) # noqa: E50
|
|
517
|
+
@@ -243613,32 +243613,1022 @@
|
|
518
|
+
icode/#IsPrint.%0A
|
|
519
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
520
|
+
:param _
|
|
521
|
+
@@ -246963,32 +246963,1022 @@
|
|
522
|
+
icode/#IsPrint.%0A
|
|
523
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
524
|
+
:param _
|
|
525
|
+
@@ -248988,32 +248988,64 @@
|
|
526
|
+
'field_manager'
|
|
527
|
+
+,%0A 'field_validation'
|
|
528
|
+
%0A %5D%0A
|
|
529
|
+
@@ -252551,32 +252551,255 @@
|
|
530
|
+
)) # noqa: E501
|
|
531
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
532
|
+
%0A%0A header
|
|
533
|
+
@@ -255446,32 +255446,1022 @@
|
|
534
|
+
icode/#IsPrint.%0A
|
|
535
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
536
|
+
:param _
|
|
537
|
+
@@ -258787,32 +258787,1022 @@
|
|
538
|
+
icode/#IsPrint.%0A
|
|
539
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
540
|
+
:param _
|
|
541
|
+
@@ -260812,32 +260812,64 @@
|
|
542
|
+
'field_manager'
|
|
543
|
+
+,%0A 'field_validation'
|
|
544
|
+
%0A %5D%0A
|
|
545
|
+
@@ -264411,32 +264411,255 @@
|
|
546
|
+
)) # noqa: E501
|
|
547
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
548
|
+
%0A%0A header
|
|
549
|
+
@@ -267375,32 +267375,1022 @@
|
|
550
|
+
icode/#IsPrint.%0A
|
|
551
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
552
|
+
:param _
|
|
553
|
+
@@ -270721,32 +270721,1022 @@
|
|
554
|
+
icode/#IsPrint.%0A
|
|
555
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
556
|
+
:param _
|
|
557
|
+
@@ -272746,32 +272746,64 @@
|
|
558
|
+
'field_manager'
|
|
559
|
+
+,%0A 'field_validation'
|
|
560
|
+
%0A %5D%0A
|
|
561
|
+
@@ -276351,32 +276351,255 @@
|
|
562
|
+
)) # noqa: E501
|
|
563
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
564
|
+
%0A%0A header
|
|
565
|
+
@@ -279435,32 +279435,1022 @@
|
|
566
|
+
icode/#IsPrint.%0A
|
|
567
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
568
|
+
:param _
|
|
569
|
+
@@ -282907,32 +282907,1022 @@
|
|
570
|
+
icode/#IsPrint.%0A
|
|
571
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
572
|
+
:param _
|
|
573
|
+
@@ -284957,32 +284957,64 @@
|
|
574
|
+
'field_manager'
|
|
575
|
+
+,%0A 'field_validation'
|
|
576
|
+
%0A %5D%0A
|
|
577
|
+
@@ -289082,32 +289082,255 @@
|
|
578
|
+
)) # noqa: E501
|
|
579
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
580
|
+
%0A%0A header
|
|
581
|
+
@@ -292106,32 +292106,1022 @@
|
|
582
|
+
icode/#IsPrint.%0A
|
|
583
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
584
|
+
:param _
|
|
585
|
+
@@ -295567,32 +295567,1022 @@
|
|
586
|
+
icode/#IsPrint.%0A
|
|
587
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
588
|
+
:param _
|
|
589
|
+
@@ -297617,32 +297617,64 @@
|
|
590
|
+
'field_manager'
|
|
591
|
+
+,%0A 'field_validation'
|
|
592
|
+
%0A %5D%0A
|
|
593
|
+
@@ -301784,32 +301784,255 @@
|
|
594
|
+
)) # noqa: E501
|
|
595
|
+
+%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation'%5D)) # noqa: E501
|
|
596
|
+
%0A%0A header
|
|
597
|
+
@@ -304877,32 +304877,1022 @@
|
|
598
|
+
icode/#IsPrint.%0A
|
|
599
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
600
|
+
:param _
|
|
601
|
+
@@ -308343,32 +308343,1022 @@
|
|
602
|
+
icode/#IsPrint.%0A
|
|
603
|
+
+ :param str field_validation: fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)%0A
|
|
604
|
+
:param _
|
|
605
|
+
@@ -310401,16 +310401,48 @@
|
|
606
|
+
manager'
|
|
607
|
+
+,%0A 'field_validation'
|
|
608
|
+
%0A
|
|
609
|
+
@@ -314469,32 +314469,32 @@
|
|
610
|
+
: # noqa: E501%0A
|
|
611
|
+
-
|
|
612
|
+
quer L
|
|
613
|
+
@@ -314549,32 +314549,255 @@
|
|
614
|
+
s%5B'field_manager
|
|
615
|
+
+'%5D)) # noqa: E501%0A if 'field_validation' in local_var_params and local_var_params%5B'field_validation'%5D is not None: # noqa: E501%0A query_params.append(('fieldValidation', local_var_params%5B'field_validation
|
|
616
|
+
'%5D)) # noqa: E5
|
|
617
|
+
""", "kubernetes/client/api/custom_objects_api.py", "field_validation", 25, None, "field_validation_patch_25+")
|