Skip to content

Commit dde109d

Browse files
committed
Regenerate for Kubernetes 1.23
1 parent 2f1ca87 commit dde109d

File tree

812 files changed

+329357
-408416
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

812 files changed

+329357
-408416
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
42cf03cde47a321df85298fdc523b3f44084346358076b84268b1b56accdab7c
1+
101613b627077e104d69fb10749a54daea47ab9d8c5e1cecd8d7719022e14e21

kubernetes/api/openapi.yaml

+148,520-142,343
Large diffs are not rendered by default.

kubernetes/docs/AdmissionregistrationV1Api.md

+24-12
Large diffs are not rendered by default.

kubernetes/docs/ApiextensionsV1Api.md

+20-10
Large diffs are not rendered by default.

kubernetes/docs/ApiregistrationV1Api.md

+20-10
Large diffs are not rendered by default.

kubernetes/docs/AppsV1Api.md

+116-58
Large diffs are not rendered by default.

kubernetes/docs/AuthenticationV1Api.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Method | HTTP request | Description
1010

1111
<a name="createTokenReview"></a>
1212
# **createTokenReview**
13-
> V1TokenReview createTokenReview(body, dryRun, fieldManager, pretty)
13+
> V1TokenReview createTokenReview(body, dryRun, fieldManager, fieldValidation, pretty)
1414
1515

1616

@@ -41,9 +41,10 @@ public class Example {
4141
V1TokenReview body = new V1TokenReview(); // V1TokenReview |
4242
String dryRun = "dryRun_example"; // String | When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
4343
String fieldManager = "fieldManager_example"; // String | fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
44+
String fieldValidation = "fieldValidation_example"; // String | fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the `ServerSideFieldValidation` feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields.
4445
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
4546
try {
46-
V1TokenReview result = apiInstance.createTokenReview(body, dryRun, fieldManager, pretty);
47+
V1TokenReview result = apiInstance.createTokenReview(body, dryRun, fieldManager, fieldValidation, pretty);
4748
System.out.println(result);
4849
} catch (ApiException e) {
4950
System.err.println("Exception when calling AuthenticationV1Api#createTokenReview");
@@ -63,6 +64,7 @@ Name | Type | Description | Notes
6364
**body** | [**V1TokenReview**](V1TokenReview.md)| |
6465
**dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional]
6566
**fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional]
67+
**fieldValidation** | **String**| fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the &#x60;ServerSideFieldValidation&#x60; feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields. | [optional]
6668
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
6769

6870
### Return type

kubernetes/docs/AuthorizationV1Api.md

+16-8
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Method | HTTP request | Description
1313

1414
<a name="createNamespacedLocalSubjectAccessReview"></a>
1515
# **createNamespacedLocalSubjectAccessReview**
16-
> V1LocalSubjectAccessReview createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, fieldManager, pretty)
16+
> V1LocalSubjectAccessReview createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, fieldManager, fieldValidation, pretty)
1717
1818

1919

@@ -45,9 +45,10 @@ public class Example {
4545
V1LocalSubjectAccessReview body = new V1LocalSubjectAccessReview(); // V1LocalSubjectAccessReview |
4646
String dryRun = "dryRun_example"; // String | When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
4747
String fieldManager = "fieldManager_example"; // String | fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
48+
String fieldValidation = "fieldValidation_example"; // String | fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the `ServerSideFieldValidation` feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields.
4849
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
4950
try {
50-
V1LocalSubjectAccessReview result = apiInstance.createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, fieldManager, pretty);
51+
V1LocalSubjectAccessReview result = apiInstance.createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, fieldManager, fieldValidation, pretty);
5152
System.out.println(result);
5253
} catch (ApiException e) {
5354
System.err.println("Exception when calling AuthorizationV1Api#createNamespacedLocalSubjectAccessReview");
@@ -68,6 +69,7 @@ Name | Type | Description | Notes
6869
**body** | [**V1LocalSubjectAccessReview**](V1LocalSubjectAccessReview.md)| |
6970
**dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional]
7071
**fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional]
72+
**fieldValidation** | **String**| fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the &#x60;ServerSideFieldValidation&#x60; feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields. | [optional]
7173
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
7274

7375
### Return type
@@ -93,7 +95,7 @@ Name | Type | Description | Notes
9395

9496
<a name="createSelfSubjectAccessReview"></a>
9597
# **createSelfSubjectAccessReview**
96-
> V1SelfSubjectAccessReview createSelfSubjectAccessReview(body, dryRun, fieldManager, pretty)
98+
> V1SelfSubjectAccessReview createSelfSubjectAccessReview(body, dryRun, fieldManager, fieldValidation, pretty)
9799
98100

99101

@@ -124,9 +126,10 @@ public class Example {
124126
V1SelfSubjectAccessReview body = new V1SelfSubjectAccessReview(); // V1SelfSubjectAccessReview |
125127
String dryRun = "dryRun_example"; // String | When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
126128
String fieldManager = "fieldManager_example"; // String | fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
129+
String fieldValidation = "fieldValidation_example"; // String | fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the `ServerSideFieldValidation` feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields.
127130
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
128131
try {
129-
V1SelfSubjectAccessReview result = apiInstance.createSelfSubjectAccessReview(body, dryRun, fieldManager, pretty);
132+
V1SelfSubjectAccessReview result = apiInstance.createSelfSubjectAccessReview(body, dryRun, fieldManager, fieldValidation, pretty);
130133
System.out.println(result);
131134
} catch (ApiException e) {
132135
System.err.println("Exception when calling AuthorizationV1Api#createSelfSubjectAccessReview");
@@ -146,6 +149,7 @@ Name | Type | Description | Notes
146149
**body** | [**V1SelfSubjectAccessReview**](V1SelfSubjectAccessReview.md)| |
147150
**dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional]
148151
**fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional]
152+
**fieldValidation** | **String**| fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the &#x60;ServerSideFieldValidation&#x60; feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields. | [optional]
149153
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
150154

151155
### Return type
@@ -171,7 +175,7 @@ Name | Type | Description | Notes
171175

172176
<a name="createSelfSubjectRulesReview"></a>
173177
# **createSelfSubjectRulesReview**
174-
> V1SelfSubjectRulesReview createSelfSubjectRulesReview(body, dryRun, fieldManager, pretty)
178+
> V1SelfSubjectRulesReview createSelfSubjectRulesReview(body, dryRun, fieldManager, fieldValidation, pretty)
175179
176180

177181

@@ -202,9 +206,10 @@ public class Example {
202206
V1SelfSubjectRulesReview body = new V1SelfSubjectRulesReview(); // V1SelfSubjectRulesReview |
203207
String dryRun = "dryRun_example"; // String | When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
204208
String fieldManager = "fieldManager_example"; // String | fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
209+
String fieldValidation = "fieldValidation_example"; // String | fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the `ServerSideFieldValidation` feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields.
205210
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
206211
try {
207-
V1SelfSubjectRulesReview result = apiInstance.createSelfSubjectRulesReview(body, dryRun, fieldManager, pretty);
212+
V1SelfSubjectRulesReview result = apiInstance.createSelfSubjectRulesReview(body, dryRun, fieldManager, fieldValidation, pretty);
208213
System.out.println(result);
209214
} catch (ApiException e) {
210215
System.err.println("Exception when calling AuthorizationV1Api#createSelfSubjectRulesReview");
@@ -224,6 +229,7 @@ Name | Type | Description | Notes
224229
**body** | [**V1SelfSubjectRulesReview**](V1SelfSubjectRulesReview.md)| |
225230
**dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional]
226231
**fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional]
232+
**fieldValidation** | **String**| fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the &#x60;ServerSideFieldValidation&#x60; feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields. | [optional]
227233
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
228234

229235
### Return type
@@ -249,7 +255,7 @@ Name | Type | Description | Notes
249255

250256
<a name="createSubjectAccessReview"></a>
251257
# **createSubjectAccessReview**
252-
> V1SubjectAccessReview createSubjectAccessReview(body, dryRun, fieldManager, pretty)
258+
> V1SubjectAccessReview createSubjectAccessReview(body, dryRun, fieldManager, fieldValidation, pretty)
253259
254260

255261

@@ -280,9 +286,10 @@ public class Example {
280286
V1SubjectAccessReview body = new V1SubjectAccessReview(); // V1SubjectAccessReview |
281287
String dryRun = "dryRun_example"; // String | When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
282288
String fieldManager = "fieldManager_example"; // String | fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
289+
String fieldValidation = "fieldValidation_example"; // String | fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the `ServerSideFieldValidation` feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields.
283290
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
284291
try {
285-
V1SubjectAccessReview result = apiInstance.createSubjectAccessReview(body, dryRun, fieldManager, pretty);
292+
V1SubjectAccessReview result = apiInstance.createSubjectAccessReview(body, dryRun, fieldManager, fieldValidation, pretty);
286293
System.out.println(result);
287294
} catch (ApiException e) {
288295
System.err.println("Exception when calling AuthorizationV1Api#createSubjectAccessReview");
@@ -302,6 +309,7 @@ Name | Type | Description | Notes
302309
**body** | [**V1SubjectAccessReview**](V1SubjectAccessReview.md)| |
303310
**dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional]
304311
**fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional]
312+
**fieldValidation** | **String**| fieldValidation determines how the server should respond to unknown/duplicate fields in the object in the request. Introduced as alpha in 1.23, older servers or servers with the &#x60;ServerSideFieldValidation&#x60; feature disabled will discard valid values specified in this param and not perform any server side field validation. Valid values are: - Ignore: ignores unknown/duplicate fields. - Warn: responds with a warning for each unknown/duplicate field, but successfully serves the request. - Strict: fails the request on unknown/duplicate fields. | [optional]
305313
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
306314

307315
### Return type

0 commit comments

Comments
 (0)