Skip to content

Commit

Permalink
Rev to 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
brendandburns committed Oct 26, 2018
1 parent ff56a6e commit d107b66
Show file tree
Hide file tree
Showing 715 changed files with 21,885 additions and 11,933 deletions.
50 changes: 30 additions & 20 deletions kubernetes/docs/AdmissionregistrationV1alpha1Api.md

Large diffs are not rendered by default.

100 changes: 60 additions & 40 deletions kubernetes/docs/AdmissionregistrationV1beta1Api.md

Large diffs are not rendered by default.

62 changes: 38 additions & 24 deletions kubernetes/docs/ApiextensionsV1beta1Api.md

Large diffs are not rendered by default.

62 changes: 38 additions & 24 deletions kubernetes/docs/ApiregistrationV1Api.md

Large diffs are not rendered by default.

62 changes: 38 additions & 24 deletions kubernetes/docs/ApiregistrationV1beta1Api.md

Large diffs are not rendered by default.

354 changes: 216 additions & 138 deletions kubernetes/docs/AppsV1Api.md

Large diffs are not rendered by default.

220 changes: 135 additions & 85 deletions kubernetes/docs/AppsV1beta1Api.md

Large diffs are not rendered by default.

354 changes: 216 additions & 138 deletions kubernetes/docs/AppsV1beta2Api.md

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions kubernetes/docs/AuthenticationV1Api.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Method | HTTP request | Description

<a name="createTokenReview"></a>
# **createTokenReview**
> V1TokenReview createTokenReview(body, pretty)
> V1TokenReview createTokenReview(body, dryRun, includeUninitialized, pretty)


Expand All @@ -35,9 +35,11 @@ BearerToken.setApiKey("YOUR API KEY");

AuthenticationV1Api apiInstance = new AuthenticationV1Api();
V1TokenReview body = new V1TokenReview(); // V1TokenReview |
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
Boolean includeUninitialized = true; // Boolean | If IncludeUninitialized is specified, the object may be returned without completing initialization.
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
try {
V1TokenReview result = apiInstance.createTokenReview(body, pretty);
V1TokenReview result = apiInstance.createTokenReview(body, dryRun, includeUninitialized, pretty);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthenticationV1Api#createTokenReview");
Expand All @@ -50,6 +52,8 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**V1TokenReview**](V1TokenReview.md)| |
**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]
**includeUninitialized** | **Boolean**| If IncludeUninitialized is specified, the object may be returned without completing initialization. | [optional]
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]

### Return type
Expand Down
8 changes: 6 additions & 2 deletions kubernetes/docs/AuthenticationV1beta1Api.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Method | HTTP request | Description

<a name="createTokenReview"></a>
# **createTokenReview**
> V1beta1TokenReview createTokenReview(body, pretty)
> V1beta1TokenReview createTokenReview(body, dryRun, includeUninitialized, pretty)


Expand All @@ -35,9 +35,11 @@ BearerToken.setApiKey("YOUR API KEY");

AuthenticationV1beta1Api apiInstance = new AuthenticationV1beta1Api();
V1beta1TokenReview body = new V1beta1TokenReview(); // V1beta1TokenReview |
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
Boolean includeUninitialized = true; // Boolean | If IncludeUninitialized is specified, the object may be returned without completing initialization.
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
try {
V1beta1TokenReview result = apiInstance.createTokenReview(body, pretty);
V1beta1TokenReview result = apiInstance.createTokenReview(body, dryRun, includeUninitialized, pretty);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthenticationV1beta1Api#createTokenReview");
Expand All @@ -50,6 +52,8 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**V1beta1TokenReview**](V1beta1TokenReview.md)| |
**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]
**includeUninitialized** | **Boolean**| If IncludeUninitialized is specified, the object may be returned without completing initialization. | [optional]
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]

### Return type
Expand Down
32 changes: 24 additions & 8 deletions kubernetes/docs/AuthorizationV1Api.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Method | HTTP request | Description

<a name="createNamespacedLocalSubjectAccessReview"></a>
# **createNamespacedLocalSubjectAccessReview**
> V1LocalSubjectAccessReview createNamespacedLocalSubjectAccessReview(namespace, body, pretty)
> V1LocalSubjectAccessReview createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, includeUninitialized, pretty)


Expand All @@ -39,9 +39,11 @@ BearerToken.setApiKey("YOUR API KEY");
AuthorizationV1Api apiInstance = new AuthorizationV1Api();
String namespace = "namespace_example"; // String | object name and auth scope, such as for teams and projects
V1LocalSubjectAccessReview body = new V1LocalSubjectAccessReview(); // V1LocalSubjectAccessReview |
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
Boolean includeUninitialized = true; // Boolean | If IncludeUninitialized is specified, the object may be returned without completing initialization.
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
try {
V1LocalSubjectAccessReview result = apiInstance.createNamespacedLocalSubjectAccessReview(namespace, body, pretty);
V1LocalSubjectAccessReview result = apiInstance.createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, includeUninitialized, pretty);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthorizationV1Api#createNamespacedLocalSubjectAccessReview");
Expand All @@ -55,6 +57,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**namespace** | **String**| object name and auth scope, such as for teams and projects |
**body** | [**V1LocalSubjectAccessReview**](V1LocalSubjectAccessReview.md)| |
**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]
**includeUninitialized** | **Boolean**| If IncludeUninitialized is specified, the object may be returned without completing initialization. | [optional]
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]

### Return type
Expand All @@ -72,7 +76,7 @@ Name | Type | Description | Notes

<a name="createSelfSubjectAccessReview"></a>
# **createSelfSubjectAccessReview**
> V1SelfSubjectAccessReview createSelfSubjectAccessReview(body, pretty)
> V1SelfSubjectAccessReview createSelfSubjectAccessReview(body, dryRun, includeUninitialized, pretty)


Expand All @@ -97,9 +101,11 @@ BearerToken.setApiKey("YOUR API KEY");

AuthorizationV1Api apiInstance = new AuthorizationV1Api();
V1SelfSubjectAccessReview body = new V1SelfSubjectAccessReview(); // V1SelfSubjectAccessReview |
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
Boolean includeUninitialized = true; // Boolean | If IncludeUninitialized is specified, the object may be returned without completing initialization.
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
try {
V1SelfSubjectAccessReview result = apiInstance.createSelfSubjectAccessReview(body, pretty);
V1SelfSubjectAccessReview result = apiInstance.createSelfSubjectAccessReview(body, dryRun, includeUninitialized, pretty);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthorizationV1Api#createSelfSubjectAccessReview");
Expand All @@ -112,6 +118,8 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**V1SelfSubjectAccessReview**](V1SelfSubjectAccessReview.md)| |
**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]
**includeUninitialized** | **Boolean**| If IncludeUninitialized is specified, the object may be returned without completing initialization. | [optional]
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]

### Return type
Expand All @@ -129,7 +137,7 @@ Name | Type | Description | Notes

<a name="createSelfSubjectRulesReview"></a>
# **createSelfSubjectRulesReview**
> V1SelfSubjectRulesReview createSelfSubjectRulesReview(body, pretty)
> V1SelfSubjectRulesReview createSelfSubjectRulesReview(body, dryRun, includeUninitialized, pretty)


Expand All @@ -154,9 +162,11 @@ BearerToken.setApiKey("YOUR API KEY");

AuthorizationV1Api apiInstance = new AuthorizationV1Api();
V1SelfSubjectRulesReview body = new V1SelfSubjectRulesReview(); // V1SelfSubjectRulesReview |
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
Boolean includeUninitialized = true; // Boolean | If IncludeUninitialized is specified, the object may be returned without completing initialization.
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
try {
V1SelfSubjectRulesReview result = apiInstance.createSelfSubjectRulesReview(body, pretty);
V1SelfSubjectRulesReview result = apiInstance.createSelfSubjectRulesReview(body, dryRun, includeUninitialized, pretty);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthorizationV1Api#createSelfSubjectRulesReview");
Expand All @@ -169,6 +179,8 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**V1SelfSubjectRulesReview**](V1SelfSubjectRulesReview.md)| |
**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]
**includeUninitialized** | **Boolean**| If IncludeUninitialized is specified, the object may be returned without completing initialization. | [optional]
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]

### Return type
Expand All @@ -186,7 +198,7 @@ Name | Type | Description | Notes

<a name="createSubjectAccessReview"></a>
# **createSubjectAccessReview**
> V1SubjectAccessReview createSubjectAccessReview(body, pretty)
> V1SubjectAccessReview createSubjectAccessReview(body, dryRun, includeUninitialized, pretty)


Expand All @@ -211,9 +223,11 @@ BearerToken.setApiKey("YOUR API KEY");

AuthorizationV1Api apiInstance = new AuthorizationV1Api();
V1SubjectAccessReview body = new V1SubjectAccessReview(); // V1SubjectAccessReview |
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
Boolean includeUninitialized = true; // Boolean | If IncludeUninitialized is specified, the object may be returned without completing initialization.
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
try {
V1SubjectAccessReview result = apiInstance.createSubjectAccessReview(body, pretty);
V1SubjectAccessReview result = apiInstance.createSubjectAccessReview(body, dryRun, includeUninitialized, pretty);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AuthorizationV1Api#createSubjectAccessReview");
Expand All @@ -226,6 +240,8 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**V1SubjectAccessReview**](V1SubjectAccessReview.md)| |
**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]
**includeUninitialized** | **Boolean**| If IncludeUninitialized is specified, the object may be returned without completing initialization. | [optional]
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]

### Return type
Expand Down
Loading

0 comments on commit d107b66

Please sign in to comment.