Skip to content

Commit f1067ad

Browse files
committed
generated models from 1.14 branch
1 parent e532b43 commit f1067ad

File tree

878 files changed

+30874
-11702
lines changed

Some content is hidden

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

878 files changed

+30874
-11702
lines changed

kubernetes/docs/AdmissionregistrationV1beta1Api.md

Lines changed: 44 additions & 40 deletions
Large diffs are not rendered by default.

kubernetes/docs/ApiextensionsV1beta1Api.md

Lines changed: 32 additions & 24 deletions
Large diffs are not rendered by default.

kubernetes/docs/ApiregistrationV1Api.md

Lines changed: 32 additions & 24 deletions
Large diffs are not rendered by default.

kubernetes/docs/ApiregistrationV1beta1Api.md

Lines changed: 32 additions & 24 deletions
Large diffs are not rendered by default.

kubernetes/docs/AppsV1Api.md

Lines changed: 190 additions & 148 deletions
Large diffs are not rendered by default.

kubernetes/docs/AppsV1beta1Api.md

Lines changed: 116 additions & 92 deletions
Large diffs are not rendered by default.

kubernetes/docs/AppsV1beta1RollingUpdateDeployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**maxSurge** | [**IntOrString**](IntOrString.md) | The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods. | [optional]
7+
**maxSurge** | [**IntOrString**](IntOrString.md) | The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods. | [optional]
88
**maxUnavailable** | [**IntOrString**](IntOrString.md) | The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. | [optional]
99

1010

kubernetes/docs/AppsV1beta2Api.md

Lines changed: 190 additions & 148 deletions
Large diffs are not rendered by default.

kubernetes/docs/AuditregistrationV1alpha1Api.md

Lines changed: 22 additions & 20 deletions
Large diffs are not rendered by default.

kubernetes/docs/AuthenticationV1Api.md

Lines changed: 4 additions & 4 deletions
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, includeUninitialized, pretty)
13+
> V1TokenReview createTokenReview(body, dryRun, fieldManager, pretty)
1414
1515

1616

@@ -36,10 +36,10 @@ BearerToken.setApiKey("YOUR API KEY");
3636
AuthenticationV1Api apiInstance = new AuthenticationV1Api();
3737
V1TokenReview body = new V1TokenReview(); // V1TokenReview |
3838
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
39-
Boolean includeUninitialized = true; // Boolean | If IncludeUninitialized is specified, the object may be returned without completing initialization.
39+
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.
4040
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
4141
try {
42-
V1TokenReview result = apiInstance.createTokenReview(body, dryRun, includeUninitialized, pretty);
42+
V1TokenReview result = apiInstance.createTokenReview(body, dryRun, fieldManager, pretty);
4343
System.out.println(result);
4444
} catch (ApiException e) {
4545
System.err.println("Exception when calling AuthenticationV1Api#createTokenReview");
@@ -53,7 +53,7 @@ Name | Type | Description | Notes
5353
------------- | ------------- | ------------- | -------------
5454
**body** | [**V1TokenReview**](V1TokenReview.md)| |
5555
**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]
56-
**includeUninitialized** | **Boolean**| If IncludeUninitialized is specified, the object may be returned without completing initialization. | [optional]
56+
**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]
5757
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
5858

5959
### Return type

0 commit comments

Comments
 (0)