@@ -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 ' ; true' ; , 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 ' ; true' ; , 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** : * /*
0 commit comments