Skip to content

Commit 89d532a

Browse files
Merge pull request #311 from brendandburns/master
Regenerate client for Kubernetes 1.11
2 parents ac342eb + 2f67ea1 commit 89d532a

File tree

738 files changed

+9358
-2012
lines changed

Some content is hidden

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

738 files changed

+9358
-2012
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
# Maven builds
1010
*/target/
11+
target/
1112

1213
# Mobile Tools for Java (J2ME)
1314
.mtj.tmp/

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,13 @@ All APIs and Models' documentation can be found at the [Generated client's READM
126126

127127
## Compatibility
128128

129-
| client version | Kubernetes 1.4 | Kubernetes 1.5 | Kubernetes 1.6 | Kubernetes 1.7 | Kubernetes 1.8 | Kubernetes 1.9 | Kubernetes 1.10 |
129+
| client version | Kubernetes 1.4 | Kubernetes 1.5 | Kubernetes 1.6 | Kubernetes 1.7 | Kubernetes 1.8 | Kubernetes 1.9 | Kubernetes 1.10 | Kubernetes 1.11 |
130130
|-------------------------|----------------|----------------|----------------|----------------|----------------|-----------|-----------|
131-
| 0.1.0 | + | + || - | - | - | - |
132-
| 0.2.0 | + | + || - | - | - | - |
133-
| 1.0.0 | + | + | + | + || - | - |
134-
| 2.0.0-beta2 | + | + | + | + | + | + ||
131+
| 0.1.0 | + | + || - | - | - | - | - |
132+
| 0.2.0 | + | + || - | - | - | - | - |
133+
| 1.0.0 | + | + | + | + || - | - | - |
134+
| 2.0.0 | + | + | + | + | + | + || - |
135+
| 3.0.0-beta1 | + | + | + | + | + | + | + ||
135136

136137
Key:
137138

kubernetes/docs/ApiextensionsV1beta1Api.md

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Method | HTTP request | Description
1010
[**getAPIResources**](ApiextensionsV1beta1Api.md#getAPIResources) | **GET** /apis/apiextensions.k8s.io/v1beta1/ |
1111
[**listCustomResourceDefinition**](ApiextensionsV1beta1Api.md#listCustomResourceDefinition) | **GET** /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions |
1212
[**patchCustomResourceDefinition**](ApiextensionsV1beta1Api.md#patchCustomResourceDefinition) | **PATCH** /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name} |
13+
[**patchCustomResourceDefinitionStatus**](ApiextensionsV1beta1Api.md#patchCustomResourceDefinitionStatus) | **PATCH** /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status |
1314
[**readCustomResourceDefinition**](ApiextensionsV1beta1Api.md#readCustomResourceDefinition) | **GET** /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name} |
15+
[**readCustomResourceDefinitionStatus**](ApiextensionsV1beta1Api.md#readCustomResourceDefinitionStatus) | **GET** /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status |
1416
[**replaceCustomResourceDefinition**](ApiextensionsV1beta1Api.md#replaceCustomResourceDefinition) | **PUT** /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name} |
1517
[**replaceCustomResourceDefinitionStatus**](ApiextensionsV1beta1Api.md#replaceCustomResourceDefinitionStatus) | **PUT** /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status |
1618

@@ -384,6 +386,65 @@ Name | Type | Description | Notes
384386

385387
[BearerToken](../README.md#BearerToken)
386388

389+
### HTTP request headers
390+
391+
- **Content-Type**: application/json-patch+json, application/merge-patch+json, application/strategic-merge-patch+json
392+
- **Accept**: application/json, application/yaml, application/vnd.kubernetes.protobuf
393+
394+
<a name="patchCustomResourceDefinitionStatus"></a>
395+
# **patchCustomResourceDefinitionStatus**
396+
> V1beta1CustomResourceDefinition patchCustomResourceDefinitionStatus(name, body, pretty)
397+
398+
399+
400+
partially update status of the specified CustomResourceDefinition
401+
402+
### Example
403+
```java
404+
// Import classes:
405+
//import io.kubernetes.client.ApiClient;
406+
//import io.kubernetes.client.ApiException;
407+
//import io.kubernetes.client.Configuration;
408+
//import io.kubernetes.client.auth.*;
409+
//import io.kubernetes.client.apis.ApiextensionsV1beta1Api;
410+
411+
ApiClient defaultClient = Configuration.getDefaultApiClient();
412+
413+
// Configure API key authorization: BearerToken
414+
ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken");
415+
BearerToken.setApiKey("YOUR API KEY");
416+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
417+
//BearerToken.setApiKeyPrefix("Token");
418+
419+
ApiextensionsV1beta1Api apiInstance = new ApiextensionsV1beta1Api();
420+
String name = "name_example"; // String | name of the CustomResourceDefinition
421+
Object body = null; // Object |
422+
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
423+
try {
424+
V1beta1CustomResourceDefinition result = apiInstance.patchCustomResourceDefinitionStatus(name, body, pretty);
425+
System.out.println(result);
426+
} catch (ApiException e) {
427+
System.err.println("Exception when calling ApiextensionsV1beta1Api#patchCustomResourceDefinitionStatus");
428+
e.printStackTrace();
429+
}
430+
```
431+
432+
### Parameters
433+
434+
Name | Type | Description | Notes
435+
------------- | ------------- | ------------- | -------------
436+
**name** | **String**| name of the CustomResourceDefinition |
437+
**body** | **Object**| |
438+
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
439+
440+
### Return type
441+
442+
[**V1beta1CustomResourceDefinition**](V1beta1CustomResourceDefinition.md)
443+
444+
### Authorization
445+
446+
[BearerToken](../README.md#BearerToken)
447+
387448
### HTTP request headers
388449

389450
- **Content-Type**: application/json-patch+json, application/merge-patch+json, application/strategic-merge-patch+json
@@ -445,6 +506,63 @@ Name | Type | Description | Notes
445506

446507
[BearerToken](../README.md#BearerToken)
447508

509+
### HTTP request headers
510+
511+
- **Content-Type**: */*
512+
- **Accept**: application/json, application/yaml, application/vnd.kubernetes.protobuf
513+
514+
<a name="readCustomResourceDefinitionStatus"></a>
515+
# **readCustomResourceDefinitionStatus**
516+
> V1beta1CustomResourceDefinition readCustomResourceDefinitionStatus(name, pretty)
517+
518+
519+
520+
read status of the specified CustomResourceDefinition
521+
522+
### Example
523+
```java
524+
// Import classes:
525+
//import io.kubernetes.client.ApiClient;
526+
//import io.kubernetes.client.ApiException;
527+
//import io.kubernetes.client.Configuration;
528+
//import io.kubernetes.client.auth.*;
529+
//import io.kubernetes.client.apis.ApiextensionsV1beta1Api;
530+
531+
ApiClient defaultClient = Configuration.getDefaultApiClient();
532+
533+
// Configure API key authorization: BearerToken
534+
ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken");
535+
BearerToken.setApiKey("YOUR API KEY");
536+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
537+
//BearerToken.setApiKeyPrefix("Token");
538+
539+
ApiextensionsV1beta1Api apiInstance = new ApiextensionsV1beta1Api();
540+
String name = "name_example"; // String | name of the CustomResourceDefinition
541+
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
542+
try {
543+
V1beta1CustomResourceDefinition result = apiInstance.readCustomResourceDefinitionStatus(name, pretty);
544+
System.out.println(result);
545+
} catch (ApiException e) {
546+
System.err.println("Exception when calling ApiextensionsV1beta1Api#readCustomResourceDefinitionStatus");
547+
e.printStackTrace();
548+
}
549+
```
550+
551+
### Parameters
552+
553+
Name | Type | Description | Notes
554+
------------- | ------------- | ------------- | -------------
555+
**name** | **String**| name of the CustomResourceDefinition |
556+
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
557+
558+
### Return type
559+
560+
[**V1beta1CustomResourceDefinition**](V1beta1CustomResourceDefinition.md)
561+
562+
### Authorization
563+
564+
[BearerToken](../README.md#BearerToken)
565+
448566
### HTTP request headers
449567

450568
- **Content-Type**: */*

kubernetes/docs/ApiregistrationV1Api.md

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Method | HTTP request | Description
1010
[**getAPIResources**](ApiregistrationV1Api.md#getAPIResources) | **GET** /apis/apiregistration.k8s.io/v1/ |
1111
[**listAPIService**](ApiregistrationV1Api.md#listAPIService) | **GET** /apis/apiregistration.k8s.io/v1/apiservices |
1212
[**patchAPIService**](ApiregistrationV1Api.md#patchAPIService) | **PATCH** /apis/apiregistration.k8s.io/v1/apiservices/{name} |
13+
[**patchAPIServiceStatus**](ApiregistrationV1Api.md#patchAPIServiceStatus) | **PATCH** /apis/apiregistration.k8s.io/v1/apiservices/{name}/status |
1314
[**readAPIService**](ApiregistrationV1Api.md#readAPIService) | **GET** /apis/apiregistration.k8s.io/v1/apiservices/{name} |
15+
[**readAPIServiceStatus**](ApiregistrationV1Api.md#readAPIServiceStatus) | **GET** /apis/apiregistration.k8s.io/v1/apiservices/{name}/status |
1416
[**replaceAPIService**](ApiregistrationV1Api.md#replaceAPIService) | **PUT** /apis/apiregistration.k8s.io/v1/apiservices/{name} |
1517
[**replaceAPIServiceStatus**](ApiregistrationV1Api.md#replaceAPIServiceStatus) | **PUT** /apis/apiregistration.k8s.io/v1/apiservices/{name}/status |
1618

@@ -384,6 +386,65 @@ Name | Type | Description | Notes
384386

385387
[BearerToken](../README.md#BearerToken)
386388

389+
### HTTP request headers
390+
391+
- **Content-Type**: application/json-patch+json, application/merge-patch+json, application/strategic-merge-patch+json
392+
- **Accept**: application/json, application/yaml, application/vnd.kubernetes.protobuf
393+
394+
<a name="patchAPIServiceStatus"></a>
395+
# **patchAPIServiceStatus**
396+
> V1APIService patchAPIServiceStatus(name, body, pretty)
397+
398+
399+
400+
partially update status of the specified APIService
401+
402+
### Example
403+
```java
404+
// Import classes:
405+
//import io.kubernetes.client.ApiClient;
406+
//import io.kubernetes.client.ApiException;
407+
//import io.kubernetes.client.Configuration;
408+
//import io.kubernetes.client.auth.*;
409+
//import io.kubernetes.client.apis.ApiregistrationV1Api;
410+
411+
ApiClient defaultClient = Configuration.getDefaultApiClient();
412+
413+
// Configure API key authorization: BearerToken
414+
ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken");
415+
BearerToken.setApiKey("YOUR API KEY");
416+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
417+
//BearerToken.setApiKeyPrefix("Token");
418+
419+
ApiregistrationV1Api apiInstance = new ApiregistrationV1Api();
420+
String name = "name_example"; // String | name of the APIService
421+
Object body = null; // Object |
422+
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
423+
try {
424+
V1APIService result = apiInstance.patchAPIServiceStatus(name, body, pretty);
425+
System.out.println(result);
426+
} catch (ApiException e) {
427+
System.err.println("Exception when calling ApiregistrationV1Api#patchAPIServiceStatus");
428+
e.printStackTrace();
429+
}
430+
```
431+
432+
### Parameters
433+
434+
Name | Type | Description | Notes
435+
------------- | ------------- | ------------- | -------------
436+
**name** | **String**| name of the APIService |
437+
**body** | **Object**| |
438+
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
439+
440+
### Return type
441+
442+
[**V1APIService**](V1APIService.md)
443+
444+
### Authorization
445+
446+
[BearerToken](../README.md#BearerToken)
447+
387448
### HTTP request headers
388449

389450
- **Content-Type**: application/json-patch+json, application/merge-patch+json, application/strategic-merge-patch+json
@@ -445,6 +506,63 @@ Name | Type | Description | Notes
445506

446507
[BearerToken](../README.md#BearerToken)
447508

509+
### HTTP request headers
510+
511+
- **Content-Type**: */*
512+
- **Accept**: application/json, application/yaml, application/vnd.kubernetes.protobuf
513+
514+
<a name="readAPIServiceStatus"></a>
515+
# **readAPIServiceStatus**
516+
> V1APIService readAPIServiceStatus(name, pretty)
517+
518+
519+
520+
read status of the specified APIService
521+
522+
### Example
523+
```java
524+
// Import classes:
525+
//import io.kubernetes.client.ApiClient;
526+
//import io.kubernetes.client.ApiException;
527+
//import io.kubernetes.client.Configuration;
528+
//import io.kubernetes.client.auth.*;
529+
//import io.kubernetes.client.apis.ApiregistrationV1Api;
530+
531+
ApiClient defaultClient = Configuration.getDefaultApiClient();
532+
533+
// Configure API key authorization: BearerToken
534+
ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken");
535+
BearerToken.setApiKey("YOUR API KEY");
536+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
537+
//BearerToken.setApiKeyPrefix("Token");
538+
539+
ApiregistrationV1Api apiInstance = new ApiregistrationV1Api();
540+
String name = "name_example"; // String | name of the APIService
541+
String pretty = "pretty_example"; // String | If 'true', then the output is pretty printed.
542+
try {
543+
V1APIService result = apiInstance.readAPIServiceStatus(name, pretty);
544+
System.out.println(result);
545+
} catch (ApiException e) {
546+
System.err.println("Exception when calling ApiregistrationV1Api#readAPIServiceStatus");
547+
e.printStackTrace();
548+
}
549+
```
550+
551+
### Parameters
552+
553+
Name | Type | Description | Notes
554+
------------- | ------------- | ------------- | -------------
555+
**name** | **String**| name of the APIService |
556+
**pretty** | **String**| If &#39;true&#39;, then the output is pretty printed. | [optional]
557+
558+
### Return type
559+
560+
[**V1APIService**](V1APIService.md)
561+
562+
### Authorization
563+
564+
[BearerToken](../README.md#BearerToken)
565+
448566
### HTTP request headers
449567

450568
- **Content-Type**: */*

0 commit comments

Comments
 (0)