diff --git a/kubernetes/.swagger-codegen/COMMIT b/kubernetes/.swagger-codegen/COMMIT index d210b271cf..0ab13c4bb1 100644 --- a/kubernetes/.swagger-codegen/COMMIT +++ b/kubernetes/.swagger-codegen/COMMIT @@ -1,2 +1,2 @@ -Requested Commit: 5d263e1c9cdd395d93adf061c63d5ef58a8e9ec5 -Actual Commit: 5d263e1c9cdd395d93adf061c63d5ef58a8e9ec5 +Requested Commit: 47111b3241267d732dc400db2745e61d126ccc87 +Actual Commit: 47111b3241267d732dc400db2745e61d126ccc87 diff --git a/kubernetes/.swagger-codegen/VERSION b/kubernetes/.swagger-codegen/VERSION index f9f7450d13..855ff9501e 100644 --- a/kubernetes/.swagger-codegen/VERSION +++ b/kubernetes/.swagger-codegen/VERSION @@ -1 +1 @@ -2.3.0-SNAPSHOT \ No newline at end of file +2.4.0-SNAPSHOT \ No newline at end of file diff --git a/kubernetes/docs/AppsV1beta1RollingUpdateDeployment.md b/kubernetes/docs/AppsV1beta1RollingUpdateDeployment.md index 1915d5fa06..676c730b5d 100644 --- a/kubernetes/docs/AppsV1beta1RollingUpdateDeployment.md +++ b/kubernetes/docs/AppsV1beta1RollingUpdateDeployment.md @@ -4,8 +4,8 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**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 RC 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 RC 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] -**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 RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. | [optional] +**maxSurge** | **String** | 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 RC 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 RC 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] +**maxUnavailable** | **String** | 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 RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. | [optional] diff --git a/kubernetes/docs/CustomObjectsApi.md b/kubernetes/docs/CustomObjectsApi.md index ed22cdad0d..11c2336331 100644 --- a/kubernetes/docs/CustomObjectsApi.md +++ b/kubernetes/docs/CustomObjectsApi.md @@ -12,6 +12,8 @@ Method | HTTP request | Description [**getNamespacedCustomObject**](CustomObjectsApi.md#getNamespacedCustomObject) | **GET** /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name} | [**listClusterCustomObject**](CustomObjectsApi.md#listClusterCustomObject) | **GET** /apis/{group}/{version}/{plural} | [**listNamespacedCustomObject**](CustomObjectsApi.md#listNamespacedCustomObject) | **GET** /apis/{group}/{version}/namespaces/{namespace}/{plural} | +[**patchClusterCustomObject**](CustomObjectsApi.md#patchClusterCustomObject) | **PATCH** /apis/{group}/{version}/{plural}/{name} | +[**patchNamespacedCustomObject**](CustomObjectsApi.md#patchNamespacedCustomObject) | **PATCH** /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name} | [**replaceClusterCustomObject**](CustomObjectsApi.md#replaceClusterCustomObject) | **PUT** /apis/{group}/{version}/{plural}/{name} | [**replaceNamespacedCustomObject**](CustomObjectsApi.md#replaceNamespacedCustomObject) | **PUT** /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name} | @@ -544,6 +546,134 @@ Name | Type | Description | Notes - **Content-Type**: */* - **Accept**: application/json, application/json;stream=watch + +# **patchClusterCustomObject** +> Object patchClusterCustomObject(group, version, plural, name, body) + + + +patch the specified cluster scoped custom object + +### Example +```java +// Import classes: +//import io.kubernetes.client.ApiClient; +//import io.kubernetes.client.ApiException; +//import io.kubernetes.client.Configuration; +//import io.kubernetes.client.auth.*; +//import io.kubernetes.client.apis.CustomObjectsApi; + +ApiClient defaultClient = Configuration.getDefaultApiClient(); + +// Configure API key authorization: BearerToken +ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken"); +BearerToken.setApiKey("YOUR API KEY"); +// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) +//BearerToken.setApiKeyPrefix("Token"); + +CustomObjectsApi apiInstance = new CustomObjectsApi(); +String group = "group_example"; // String | the custom resource's group +String version = "version_example"; // String | the custom resource's version +String plural = "plural_example"; // String | the custom object's plural name. For TPRs this would be lowercase plural kind. +String name = "name_example"; // String | the custom object's name +Object body = null; // Object | The JSON schema of the Resource to patch. +try { + Object result = apiInstance.patchClusterCustomObject(group, version, plural, name, body); + System.out.println(result); +} catch (ApiException e) { + System.err.println("Exception when calling CustomObjectsApi#patchClusterCustomObject"); + e.printStackTrace(); +} +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **group** | **String**| the custom resource's group | + **version** | **String**| the custom resource's version | + **plural** | **String**| the custom object's plural name. For TPRs this would be lowercase plural kind. | + **name** | **String**| the custom object's name | + **body** | **Object**| The JSON schema of the Resource to patch. | + +### Return type + +**Object** + +### Authorization + +[BearerToken](../README.md#BearerToken) + +### HTTP request headers + + - **Content-Type**: application/merge-patch+json + - **Accept**: application/json + + +# **patchNamespacedCustomObject** +> Object patchNamespacedCustomObject(group, version, namespace, plural, name, body) + + + +patch the specified namespace scoped custom object + +### Example +```java +// Import classes: +//import io.kubernetes.client.ApiClient; +//import io.kubernetes.client.ApiException; +//import io.kubernetes.client.Configuration; +//import io.kubernetes.client.auth.*; +//import io.kubernetes.client.apis.CustomObjectsApi; + +ApiClient defaultClient = Configuration.getDefaultApiClient(); + +// Configure API key authorization: BearerToken +ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken"); +BearerToken.setApiKey("YOUR API KEY"); +// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) +//BearerToken.setApiKeyPrefix("Token"); + +CustomObjectsApi apiInstance = new CustomObjectsApi(); +String group = "group_example"; // String | the custom resource's group +String version = "version_example"; // String | the custom resource's version +String namespace = "namespace_example"; // String | The custom resource's namespace +String plural = "plural_example"; // String | the custom resource's plural name. For TPRs this would be lowercase plural kind. +String name = "name_example"; // String | the custom object's name +Object body = null; // Object | The JSON schema of the Resource to patch. +try { + Object result = apiInstance.patchNamespacedCustomObject(group, version, namespace, plural, name, body); + System.out.println(result); +} catch (ApiException e) { + System.err.println("Exception when calling CustomObjectsApi#patchNamespacedCustomObject"); + e.printStackTrace(); +} +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **group** | **String**| the custom resource's group | + **version** | **String**| the custom resource's version | + **namespace** | **String**| The custom resource's namespace | + **plural** | **String**| the custom resource's plural name. For TPRs this would be lowercase plural kind. | + **name** | **String**| the custom object's name | + **body** | **Object**| The JSON schema of the Resource to patch. | + +### Return type + +**Object** + +### Authorization + +[BearerToken](../README.md#BearerToken) + +### HTTP request headers + + - **Content-Type**: application/merge-patch+json + - **Accept**: application/json + # **replaceClusterCustomObject** > Object replaceClusterCustomObject(group, version, plural, name, body) diff --git a/kubernetes/docs/V1HTTPGetAction.md b/kubernetes/docs/V1HTTPGetAction.md index 11eefab653..1dd5f10278 100644 --- a/kubernetes/docs/V1HTTPGetAction.md +++ b/kubernetes/docs/V1HTTPGetAction.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **host** | **String** | Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead. | [optional] **httpHeaders** | [**List<V1HTTPHeader>**](V1HTTPHeader.md) | Custom headers to set in the request. HTTP allows repeated headers. | [optional] **path** | **String** | Path to access on the HTTP server. | [optional] -**port** | [**IntOrString**](IntOrString.md) | Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. | +**port** | **String** | Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. | **scheme** | **String** | Scheme to use for connecting to the host. Defaults to HTTP. | [optional] diff --git a/kubernetes/docs/V1NetworkPolicyPort.md b/kubernetes/docs/V1NetworkPolicyPort.md index e6b5340459..f387e58ffc 100644 --- a/kubernetes/docs/V1NetworkPolicyPort.md +++ b/kubernetes/docs/V1NetworkPolicyPort.md @@ -4,7 +4,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**port** | [**IntOrString**](IntOrString.md) | The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. | [optional] +**port** | **String** | The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. | [optional] **protocol** | **String** | The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP. | [optional] diff --git a/kubernetes/docs/V1PersistentVolumeSpec.md b/kubernetes/docs/V1PersistentVolumeSpec.md index b4354ac067..da8e606a0c 100644 --- a/kubernetes/docs/V1PersistentVolumeSpec.md +++ b/kubernetes/docs/V1PersistentVolumeSpec.md @@ -27,7 +27,7 @@ Name | Type | Description | Notes **portworxVolume** | [**V1PortworxVolumeSource**](V1PortworxVolumeSource.md) | PortworxVolume represents a portworx volume attached and mounted on kubelets host machine | [optional] **quobyte** | [**V1QuobyteVolumeSource**](V1QuobyteVolumeSource.md) | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime | [optional] **rbd** | [**V1RBDVolumeSource**](V1RBDVolumeSource.md) | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md | [optional] -**scaleIO** | [**V1ScaleIOVolumeSource**](V1ScaleIOVolumeSource.md) | ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. | [optional] +**scaleIO** | [**V1ScaleIOPersistentVolumeSource**](V1ScaleIOPersistentVolumeSource.md) | ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. | [optional] **storageClassName** | **String** | Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass. | [optional] **storageos** | [**V1StorageOSPersistentVolumeSource**](V1StorageOSPersistentVolumeSource.md) | StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md | [optional] **vsphereVolume** | [**V1VsphereVirtualDiskVolumeSource**](V1VsphereVirtualDiskVolumeSource.md) | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine | [optional] diff --git a/kubernetes/docs/V1ScaleIOPersistentVolumeSource.md b/kubernetes/docs/V1ScaleIOPersistentVolumeSource.md new file mode 100644 index 0000000000..860892f7ae --- /dev/null +++ b/kubernetes/docs/V1ScaleIOPersistentVolumeSource.md @@ -0,0 +1,19 @@ + +# V1ScaleIOPersistentVolumeSource + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**fsType** | **String** | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. | [optional] +**gateway** | **String** | The host address of the ScaleIO API Gateway. | +**protectionDomain** | **String** | The name of the ScaleIO Protection Domain for the configured storage. | [optional] +**readOnly** | **Boolean** | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. | [optional] +**secretRef** | [**V1SecretReference**](V1SecretReference.md) | SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. | +**sslEnabled** | **Boolean** | Flag to enable/disable SSL communication with Gateway, default false | [optional] +**storageMode** | **String** | Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. | [optional] +**storagePool** | **String** | The ScaleIO Storage Pool associated with the protection domain. | [optional] +**system** | **String** | The name of the storage system as configured in ScaleIO. | +**volumeName** | **String** | The name of a volume already created in the ScaleIO system that is associated with this volume source. | [optional] + + + diff --git a/kubernetes/docs/V1ScaleIOVolumeSource.md b/kubernetes/docs/V1ScaleIOVolumeSource.md index 4fe7f4aae0..7fdecb8b01 100644 --- a/kubernetes/docs/V1ScaleIOVolumeSource.md +++ b/kubernetes/docs/V1ScaleIOVolumeSource.md @@ -6,12 +6,12 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **fsType** | **String** | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. | [optional] **gateway** | **String** | The host address of the ScaleIO API Gateway. | -**protectionDomain** | **String** | The name of the Protection Domain for the configured storage (defaults to \"default\"). | [optional] +**protectionDomain** | **String** | The name of the ScaleIO Protection Domain for the configured storage. | [optional] **readOnly** | **Boolean** | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. | [optional] **secretRef** | [**V1LocalObjectReference**](V1LocalObjectReference.md) | SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. | **sslEnabled** | **Boolean** | Flag to enable/disable SSL communication with Gateway, default false | [optional] -**storageMode** | **String** | Indicates whether the storage for a volume should be thick or thin (defaults to \"thin\"). | [optional] -**storagePool** | **String** | The Storage Pool associated with the protection domain (defaults to \"default\"). | [optional] +**storageMode** | **String** | Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. | [optional] +**storagePool** | **String** | The ScaleIO Storage Pool associated with the protection domain. | [optional] **system** | **String** | The name of the storage system as configured in ScaleIO. | **volumeName** | **String** | The name of a volume already created in the ScaleIO system that is associated with this volume source. | [optional] diff --git a/kubernetes/docs/V1ServicePort.md b/kubernetes/docs/V1ServicePort.md index d55de99dbd..4e380ebf65 100644 --- a/kubernetes/docs/V1ServicePort.md +++ b/kubernetes/docs/V1ServicePort.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **nodePort** | **Integer** | The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport | [optional] **port** | **Integer** | The port that will be exposed by this service. | **protocol** | **String** | The IP protocol for this port. Supports \"TCP\" and \"UDP\". Default is TCP. | [optional] -**targetPort** | [**IntOrString**](IntOrString.md) | Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service | [optional] +**targetPort** | **String** | Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service | [optional] diff --git a/kubernetes/docs/V1TCPSocketAction.md b/kubernetes/docs/V1TCPSocketAction.md index 8df0993a0d..7e2612f36f 100644 --- a/kubernetes/docs/V1TCPSocketAction.md +++ b/kubernetes/docs/V1TCPSocketAction.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **host** | **String** | Optional: Host name to connect to, defaults to the pod IP. | [optional] -**port** | [**IntOrString**](IntOrString.md) | Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. | +**port** | **String** | Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. | diff --git a/kubernetes/docs/V1beta1IngressBackend.md b/kubernetes/docs/V1beta1IngressBackend.md index 2f11893322..2366a063de 100644 --- a/kubernetes/docs/V1beta1IngressBackend.md +++ b/kubernetes/docs/V1beta1IngressBackend.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **serviceName** | **String** | Specifies the name of the referenced service. | -**servicePort** | [**IntOrString**](IntOrString.md) | Specifies the port of the referenced service. | +**servicePort** | **String** | Specifies the port of the referenced service. | diff --git a/kubernetes/docs/V1beta1NetworkPolicyPort.md b/kubernetes/docs/V1beta1NetworkPolicyPort.md index 7b0ff9d750..58af1f977d 100644 --- a/kubernetes/docs/V1beta1NetworkPolicyPort.md +++ b/kubernetes/docs/V1beta1NetworkPolicyPort.md @@ -4,7 +4,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**port** | [**IntOrString**](IntOrString.md) | If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched. | [optional] +**port** | **String** | If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched. | [optional] **protocol** | **String** | Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP. | [optional] diff --git a/kubernetes/docs/V1beta1PodDisruptionBudgetSpec.md b/kubernetes/docs/V1beta1PodDisruptionBudgetSpec.md index 66ba30e954..eb1a365fd1 100644 --- a/kubernetes/docs/V1beta1PodDisruptionBudgetSpec.md +++ b/kubernetes/docs/V1beta1PodDisruptionBudgetSpec.md @@ -4,8 +4,8 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**maxUnavailable** | [**IntOrString**](IntOrString.md) | An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\". | [optional] -**minAvailable** | [**IntOrString**](IntOrString.md) | An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\". | [optional] +**maxUnavailable** | **String** | An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\". | [optional] +**minAvailable** | **String** | An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\". | [optional] **selector** | [**V1LabelSelector**](V1LabelSelector.md) | Label query over pods whose evictions are managed by the disruption budget. | [optional] diff --git a/kubernetes/docs/V1beta1RollingUpdateDaemonSet.md b/kubernetes/docs/V1beta1RollingUpdateDaemonSet.md index 9c92ec4286..c02ca0d134 100644 --- a/kubernetes/docs/V1beta1RollingUpdateDaemonSet.md +++ b/kubernetes/docs/V1beta1RollingUpdateDaemonSet.md @@ -4,7 +4,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**maxUnavailable** | [**IntOrString**](IntOrString.md) | The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update. | [optional] +**maxUnavailable** | **String** | The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update. | [optional] diff --git a/kubernetes/docs/V1beta2DaemonSetSpec.md b/kubernetes/docs/V1beta2DaemonSetSpec.md index 0faacd5bd7..f4a80d46eb 100644 --- a/kubernetes/docs/V1beta2DaemonSetSpec.md +++ b/kubernetes/docs/V1beta2DaemonSetSpec.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **minReadySeconds** | **Integer** | The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). | [optional] **revisionHistoryLimit** | **Integer** | The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. | [optional] -**selector** | [**V1LabelSelector**](V1LabelSelector.md) | A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors | [optional] +**selector** | [**V1LabelSelector**](V1LabelSelector.md) | A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors | **template** | [**V1PodTemplateSpec**](V1PodTemplateSpec.md) | An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template | **updateStrategy** | [**V1beta2DaemonSetUpdateStrategy**](V1beta2DaemonSetUpdateStrategy.md) | An update strategy to replace existing DaemonSet pods with new pods. | [optional] diff --git a/kubernetes/docs/V1beta2DeploymentSpec.md b/kubernetes/docs/V1beta2DeploymentSpec.md index 7cf5e579cc..d3398b3c91 100644 --- a/kubernetes/docs/V1beta2DeploymentSpec.md +++ b/kubernetes/docs/V1beta2DeploymentSpec.md @@ -9,7 +9,7 @@ Name | Type | Description | Notes **progressDeadlineSeconds** | **Integer** | The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. | [optional] **replicas** | **Integer** | Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. | [optional] **revisionHistoryLimit** | **Integer** | The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. | [optional] -**selector** | [**V1LabelSelector**](V1LabelSelector.md) | Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. | [optional] +**selector** | [**V1LabelSelector**](V1LabelSelector.md) | Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. | **strategy** | [**V1beta2DeploymentStrategy**](V1beta2DeploymentStrategy.md) | The deployment strategy to use to replace existing pods with new ones. | [optional] **template** | [**V1PodTemplateSpec**](V1PodTemplateSpec.md) | Template describes the pods that will be created. | diff --git a/kubernetes/docs/V1beta2ReplicaSetSpec.md b/kubernetes/docs/V1beta2ReplicaSetSpec.md index f79c564def..d1257f63c4 100644 --- a/kubernetes/docs/V1beta2ReplicaSetSpec.md +++ b/kubernetes/docs/V1beta2ReplicaSetSpec.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **minReadySeconds** | **Integer** | Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) | [optional] **replicas** | **Integer** | Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller | [optional] -**selector** | [**V1LabelSelector**](V1LabelSelector.md) | Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors | [optional] +**selector** | [**V1LabelSelector**](V1LabelSelector.md) | Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors | **template** | [**V1PodTemplateSpec**](V1PodTemplateSpec.md) | Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template | [optional] diff --git a/kubernetes/docs/V1beta2RollingUpdateDaemonSet.md b/kubernetes/docs/V1beta2RollingUpdateDaemonSet.md index c2addcb6a4..4e4a347050 100644 --- a/kubernetes/docs/V1beta2RollingUpdateDaemonSet.md +++ b/kubernetes/docs/V1beta2RollingUpdateDaemonSet.md @@ -4,7 +4,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**maxUnavailable** | [**IntOrString**](IntOrString.md) | The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update. | [optional] +**maxUnavailable** | **String** | The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update. | [optional] diff --git a/kubernetes/docs/V1beta2RollingUpdateDeployment.md b/kubernetes/docs/V1beta2RollingUpdateDeployment.md index 069493f015..c0d57f2f36 100644 --- a/kubernetes/docs/V1beta2RollingUpdateDeployment.md +++ b/kubernetes/docs/V1beta2RollingUpdateDeployment.md @@ -4,8 +4,8 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**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 RC 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 RC 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] -**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 RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. | [optional] +**maxSurge** | **String** | 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 RC 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 RC 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] +**maxUnavailable** | **String** | 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 RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods. | [optional] diff --git a/kubernetes/docs/V1beta2StatefulSetSpec.md b/kubernetes/docs/V1beta2StatefulSetSpec.md index 5e6e0a92cb..33b9d25ce9 100644 --- a/kubernetes/docs/V1beta2StatefulSetSpec.md +++ b/kubernetes/docs/V1beta2StatefulSetSpec.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **podManagementPolicy** | **String** | podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. | [optional] **replicas** | **Integer** | replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. | [optional] **revisionHistoryLimit** | **Integer** | revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10. | [optional] -**selector** | [**V1LabelSelector**](V1LabelSelector.md) | selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors | [optional] +**selector** | [**V1LabelSelector**](V1LabelSelector.md) | selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors | **serviceName** | **String** | serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller. | **template** | [**V1PodTemplateSpec**](V1PodTemplateSpec.md) | template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. | **updateStrategy** | [**V1beta2StatefulSetUpdateStrategy**](V1beta2StatefulSetUpdateStrategy.md) | updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template. | [optional] diff --git a/kubernetes/src/main/java/io/kubernetes/client/ApiCallback.java b/kubernetes/src/main/java/io/kubernetes/client/ApiCallback.java index 6683f9454a..bbc20d1302 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/ApiCallback.java +++ b/kubernetes/src/main/java/io/kubernetes/client/ApiCallback.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/ApiException.java b/kubernetes/src/main/java/io/kubernetes/client/ApiException.java index eac2abd491..76dbb64df6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/ApiException.java +++ b/kubernetes/src/main/java/io/kubernetes/client/ApiException.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/ApiResponse.java b/kubernetes/src/main/java/io/kubernetes/client/ApiResponse.java index f42eef3b41..3072f51408 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/ApiResponse.java +++ b/kubernetes/src/main/java/io/kubernetes/client/ApiResponse.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/Configuration.java b/kubernetes/src/main/java/io/kubernetes/client/Configuration.java index 3af8941391..a2b0cd9ce1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/Configuration.java +++ b/kubernetes/src/main/java/io/kubernetes/client/Configuration.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/GzipRequestInterceptor.java b/kubernetes/src/main/java/io/kubernetes/client/GzipRequestInterceptor.java index 9c0f92a10f..8082617c64 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/GzipRequestInterceptor.java +++ b/kubernetes/src/main/java/io/kubernetes/client/GzipRequestInterceptor.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/Pair.java b/kubernetes/src/main/java/io/kubernetes/client/Pair.java index 555a41ae9c..eab337e93f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/Pair.java +++ b/kubernetes/src/main/java/io/kubernetes/client/Pair.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/ProgressRequestBody.java b/kubernetes/src/main/java/io/kubernetes/client/ProgressRequestBody.java index e77623da47..1f43e38fb6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/ProgressRequestBody.java +++ b/kubernetes/src/main/java/io/kubernetes/client/ProgressRequestBody.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/ProgressResponseBody.java b/kubernetes/src/main/java/io/kubernetes/client/ProgressResponseBody.java index 3cec6defa7..f27dcbcd95 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/ProgressResponseBody.java +++ b/kubernetes/src/main/java/io/kubernetes/client/ProgressResponseBody.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/StringUtil.java b/kubernetes/src/main/java/io/kubernetes/client/StringUtil.java index 302639ef9b..12a4a73444 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/StringUtil.java +++ b/kubernetes/src/main/java/io/kubernetes/client/StringUtil.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationApi.java index 2e0b7f1d1e..2a94989e27 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1Api.java index a5b9ec7311..bc831cf051 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -71,7 +71,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createExternalAdmissionHookConfigurationCall(V1alpha1ExternalAdmissionHookConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/externaladmissionhookconfigurations"; @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createExternalAdmissionHookConfigurationValidateBeforeCall(V1alpha1ExternalAdmissionHookConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -120,14 +120,10 @@ private com.squareup.okhttp.Call createExternalAdmissionHookConfigurationValidat throw new ApiException("Missing the required parameter 'body' when calling createExternalAdmissionHookConfiguration(Async)"); } - + com.squareup.okhttp.Call call = createExternalAdmissionHookConfigurationCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -203,7 +199,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createInitializerConfigurationCall(V1alpha1InitializerConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations"; @@ -243,7 +239,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createInitializerConfigurationValidateBeforeCall(V1alpha1InitializerConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -252,14 +248,10 @@ private com.squareup.okhttp.Call createInitializerConfigurationValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling createInitializerConfiguration(Async)"); } - + com.squareup.okhttp.Call call = createInitializerConfigurationCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -342,7 +334,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionExternalAdmissionHookConfigurationCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/externaladmissionhookconfigurations"; @@ -398,18 +390,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionExternalAdmissionHookConfigurationValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionExternalAdmissionHookConfigurationCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -513,7 +501,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionInitializerConfigurationCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations"; @@ -569,18 +557,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionInitializerConfigurationValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionInitializerConfigurationCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -681,7 +665,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteExternalAdmissionHookConfigurationCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/externaladmissionhookconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -728,7 +712,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteExternalAdmissionHookConfigurationValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -742,14 +726,10 @@ private com.squareup.okhttp.Call deleteExternalAdmissionHookConfigurationValidat throw new ApiException("Missing the required parameter 'body' when calling deleteExternalAdmissionHookConfiguration(Async)"); } - + com.squareup.okhttp.Call call = deleteExternalAdmissionHookConfigurationCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -841,7 +821,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteInitializerConfigurationCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -888,7 +868,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteInitializerConfigurationValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -902,14 +882,10 @@ private com.squareup.okhttp.Call deleteInitializerConfigurationValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling deleteInitializerConfiguration(Async)"); } - + com.squareup.okhttp.Call call = deleteInitializerConfigurationCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -995,7 +971,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/"; @@ -1033,18 +1009,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -1121,7 +1093,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listExternalAdmissionHookConfigurationCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/externaladmissionhookconfigurations"; @@ -1177,18 +1149,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listExternalAdmissionHookConfigurationValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listExternalAdmissionHookConfigurationCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1292,7 +1260,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listInitializerConfigurationCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations"; @@ -1348,18 +1316,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listInitializerConfigurationValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listInitializerConfigurationCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1457,7 +1421,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchExternalAdmissionHookConfigurationCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/externaladmissionhookconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1498,7 +1462,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchExternalAdmissionHookConfigurationValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1512,14 +1476,10 @@ private com.squareup.okhttp.Call patchExternalAdmissionHookConfigurationValidate throw new ApiException("Missing the required parameter 'body' when calling patchExternalAdmissionHookConfiguration(Async)"); } - + com.squareup.okhttp.Call call = patchExternalAdmissionHookConfigurationCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1599,7 +1559,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchInitializerConfigurationCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1640,7 +1600,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchInitializerConfigurationValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1654,14 +1614,10 @@ private com.squareup.okhttp.Call patchInitializerConfigurationValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling patchInitializerConfiguration(Async)"); } - + com.squareup.okhttp.Call call = patchInitializerConfigurationCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1742,7 +1698,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readExternalAdmissionHookConfigurationCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/externaladmissionhookconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1787,7 +1743,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readExternalAdmissionHookConfigurationValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1796,14 +1752,10 @@ private com.squareup.okhttp.Call readExternalAdmissionHookConfigurationValidateB throw new ApiException("Missing the required parameter 'name' when calling readExternalAdmissionHookConfiguration(Async)"); } - + com.squareup.okhttp.Call call = readExternalAdmissionHookConfigurationCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1887,7 +1839,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readInitializerConfigurationCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1932,7 +1884,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readInitializerConfigurationValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1941,14 +1893,10 @@ private com.squareup.okhttp.Call readInitializerConfigurationValidateBeforeCall( throw new ApiException("Missing the required parameter 'name' when calling readInitializerConfiguration(Async)"); } - + com.squareup.okhttp.Call call = readInitializerConfigurationCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -2031,7 +1979,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceExternalAdmissionHookConfigurationCall(String name, V1alpha1ExternalAdmissionHookConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/externaladmissionhookconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -2072,7 +2020,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceExternalAdmissionHookConfigurationValidateBeforeCall(String name, V1alpha1ExternalAdmissionHookConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2086,14 +2034,10 @@ private com.squareup.okhttp.Call replaceExternalAdmissionHookConfigurationValida throw new ApiException("Missing the required parameter 'body' when calling replaceExternalAdmissionHookConfiguration(Async)"); } - + com.squareup.okhttp.Call call = replaceExternalAdmissionHookConfigurationCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -2173,7 +2117,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceInitializerConfigurationCall(String name, V1alpha1InitializerConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -2214,7 +2158,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceInitializerConfigurationValidateBeforeCall(String name, V1alpha1InitializerConfiguration body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2228,14 +2172,10 @@ private com.squareup.okhttp.Call replaceInitializerConfigurationValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling replaceInitializerConfiguration(Async)"); } - + com.squareup.okhttp.Call call = replaceInitializerConfigurationCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsApi.java index 852939e9eb..b3b8de4a54 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsV1beta1Api.java index c4a5f74b7d..e35c7f042d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiextensionsV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -69,7 +69,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createCustomResourceDefinitionCall(V1beta1CustomResourceDefinition body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions"; @@ -109,7 +109,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createCustomResourceDefinitionValidateBeforeCall(V1beta1CustomResourceDefinition body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -118,14 +118,10 @@ private com.squareup.okhttp.Call createCustomResourceDefinitionValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling createCustomResourceDefinition(Async)"); } - + com.squareup.okhttp.Call call = createCustomResourceDefinitionCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -208,7 +204,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionCustomResourceDefinitionCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions"; @@ -264,18 +260,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionCustomResourceDefinitionValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionCustomResourceDefinitionCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -376,7 +368,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCustomResourceDefinitionCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -423,7 +415,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCustomResourceDefinitionValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -437,14 +429,10 @@ private com.squareup.okhttp.Call deleteCustomResourceDefinitionValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling deleteCustomResourceDefinition(Async)"); } - + com.squareup.okhttp.Call call = deleteCustomResourceDefinitionCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -530,7 +518,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/"; @@ -568,18 +556,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -656,7 +640,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listCustomResourceDefinitionCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions"; @@ -712,18 +696,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listCustomResourceDefinitionValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listCustomResourceDefinitionCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -821,7 +801,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchCustomResourceDefinitionCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -862,7 +842,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchCustomResourceDefinitionValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -876,14 +856,10 @@ private com.squareup.okhttp.Call patchCustomResourceDefinitionValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling patchCustomResourceDefinition(Async)"); } - + com.squareup.okhttp.Call call = patchCustomResourceDefinitionCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -964,7 +940,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readCustomResourceDefinitionCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1009,7 +985,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readCustomResourceDefinitionValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1018,14 +994,10 @@ private com.squareup.okhttp.Call readCustomResourceDefinitionValidateBeforeCall( throw new ApiException("Missing the required parameter 'name' when calling readCustomResourceDefinition(Async)"); } - + com.squareup.okhttp.Call call = readCustomResourceDefinitionCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1108,7 +1080,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceCustomResourceDefinitionCall(String name, V1beta1CustomResourceDefinition body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1149,7 +1121,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceCustomResourceDefinitionValidateBeforeCall(String name, V1beta1CustomResourceDefinition body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1163,14 +1135,10 @@ private com.squareup.okhttp.Call replaceCustomResourceDefinitionValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling replaceCustomResourceDefinition(Async)"); } - + com.squareup.okhttp.Call call = replaceCustomResourceDefinitionCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1250,7 +1218,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceCustomResourceDefinitionStatusCall(String name, V1beta1CustomResourceDefinition body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1291,7 +1259,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceCustomResourceDefinitionStatusValidateBeforeCall(String name, V1beta1CustomResourceDefinition body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1305,14 +1273,10 @@ private com.squareup.okhttp.Call replaceCustomResourceDefinitionStatusValidateBe throw new ApiException("Missing the required parameter 'body' when calling replaceCustomResourceDefinitionStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceCustomResourceDefinitionStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationApi.java index 4b7d6a5796..ea27c02071 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationV1beta1Api.java index b053f7988d..2b8d4300a8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/ApiregistrationV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -69,7 +69,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createAPIServiceCall(V1beta1APIService body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices"; @@ -109,7 +109,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createAPIServiceValidateBeforeCall(V1beta1APIService body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -118,14 +118,10 @@ private com.squareup.okhttp.Call createAPIServiceValidateBeforeCall(V1beta1APISe throw new ApiException("Missing the required parameter 'body' when calling createAPIService(Async)"); } - + com.squareup.okhttp.Call call = createAPIServiceCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -205,7 +201,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteAPIServiceCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -252,7 +248,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteAPIServiceValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -266,14 +262,10 @@ private com.squareup.okhttp.Call deleteAPIServiceValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling deleteAPIService(Async)"); } - + com.squareup.okhttp.Call call = deleteAPIServiceCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -368,7 +360,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionAPIServiceCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices"; @@ -424,18 +416,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionAPIServiceValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionAPIServiceCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -530,7 +518,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/"; @@ -568,18 +556,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -656,7 +640,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listAPIServiceCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices"; @@ -712,18 +696,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listAPIServiceValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listAPIServiceCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -821,7 +801,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchAPIServiceCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -862,7 +842,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchAPIServiceValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -876,14 +856,10 @@ private com.squareup.okhttp.Call patchAPIServiceValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling patchAPIService(Async)"); } - + com.squareup.okhttp.Call call = patchAPIServiceCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -964,7 +940,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readAPIServiceCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1009,7 +985,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readAPIServiceValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1018,14 +994,10 @@ private com.squareup.okhttp.Call readAPIServiceValidateBeforeCall(String name, S throw new ApiException("Missing the required parameter 'name' when calling readAPIService(Async)"); } - + com.squareup.okhttp.Call call = readAPIServiceCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1108,7 +1080,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceAPIServiceCall(String name, V1beta1APIService body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1149,7 +1121,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceAPIServiceValidateBeforeCall(String name, V1beta1APIService body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1163,14 +1135,10 @@ private com.squareup.okhttp.Call replaceAPIServiceValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'body' when calling replaceAPIService(Async)"); } - + com.squareup.okhttp.Call call = replaceAPIServiceCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1250,7 +1218,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceAPIServiceStatusCall(String name, V1beta1APIService body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1291,7 +1259,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceAPIServiceStatusValidateBeforeCall(String name, V1beta1APIService body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1305,14 +1273,10 @@ private com.squareup.okhttp.Call replaceAPIServiceStatusValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling replaceAPIServiceStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceAPIServiceStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/ApisApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/ApisApi.java index 6e82cd4260..0e6a682101 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/ApisApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/ApisApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIVersionsCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIVersionsValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIVersionsCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AppsApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AppsApi.java index 4cc5e1c2d6..9bef3bb96c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AppsApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AppsApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta1Api.java index aeb44e8f99..ecab4f3f5e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -76,7 +76,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedControllerRevisionCall(String namespace, V1beta1ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -117,7 +117,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedControllerRevisionValidateBeforeCall(String namespace, V1beta1ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -131,14 +131,10 @@ private com.squareup.okhttp.Call createNamespacedControllerRevisionValidateBefor throw new ApiException("Missing the required parameter 'body' when calling createNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedControllerRevisionCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -218,7 +214,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedDeploymentCall(String namespace, AppsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -259,7 +255,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedDeploymentValidateBeforeCall(String namespace, AppsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -273,14 +269,10 @@ private com.squareup.okhttp.Call createNamespacedDeploymentValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling createNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedDeploymentCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -361,7 +353,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedDeploymentRollbackCall(String name, String namespace, AppsV1beta1DeploymentRollback body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -403,7 +395,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedDeploymentRollbackValidateBeforeCall(String name, String namespace, AppsV1beta1DeploymentRollback body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -422,14 +414,10 @@ private com.squareup.okhttp.Call createNamespacedDeploymentRollbackValidateBefor throw new ApiException("Missing the required parameter 'body' when calling createNamespacedDeploymentRollback(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedDeploymentRollbackCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -512,7 +500,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedStatefulSetCall(String namespace, V1beta1StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -553,7 +541,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedStatefulSetValidateBeforeCall(String namespace, V1beta1StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -567,14 +555,10 @@ private com.squareup.okhttp.Call createNamespacedStatefulSetValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling createNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedStatefulSetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -661,7 +645,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedControllerRevisionCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -718,7 +702,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedControllerRevisionValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -727,14 +711,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedControllerRevisionVal throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedControllerRevisionCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -842,7 +822,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -899,7 +879,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -908,14 +888,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentValidateBef throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedDeploymentCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1023,7 +999,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedStatefulSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1080,7 +1056,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedStatefulSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1089,14 +1065,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedStatefulSetValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedStatefulSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1201,7 +1173,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedControllerRevisionCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1249,7 +1221,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1268,14 +1240,10 @@ private com.squareup.okhttp.Call deleteNamespacedControllerRevisionValidateBefor throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedControllerRevisionCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1371,7 +1339,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedDeploymentCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1419,7 +1387,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedDeploymentValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1438,14 +1406,10 @@ private com.squareup.okhttp.Call deleteNamespacedDeploymentValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedDeploymentCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1541,7 +1505,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedStatefulSetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1589,7 +1553,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedStatefulSetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1608,14 +1572,10 @@ private com.squareup.okhttp.Call deleteNamespacedStatefulSetValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedStatefulSetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1704,7 +1664,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/"; @@ -1742,18 +1702,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -1830,7 +1786,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listControllerRevisionForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/controllerrevisions"; @@ -1886,18 +1842,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listControllerRevisionForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listControllerRevisionForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2001,7 +1953,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listDeploymentForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/deployments"; @@ -2057,18 +2009,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listDeploymentForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listDeploymentForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2173,7 +2121,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedControllerRevisionCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2230,7 +2178,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedControllerRevisionValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2239,14 +2187,10 @@ private com.squareup.okhttp.Call listNamespacedControllerRevisionValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedControllerRevisionCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2354,7 +2298,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedDeploymentCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2411,7 +2355,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedDeploymentValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2420,14 +2364,10 @@ private com.squareup.okhttp.Call listNamespacedDeploymentValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedDeploymentCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2535,7 +2475,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedStatefulSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2592,7 +2532,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedStatefulSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2601,14 +2541,10 @@ private com.squareup.okhttp.Call listNamespacedStatefulSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedStatefulSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2715,7 +2651,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listStatefulSetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/statefulsets"; @@ -2771,18 +2707,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listStatefulSetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listStatefulSetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2881,7 +2813,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedControllerRevisionCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2923,7 +2855,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2942,14 +2874,10 @@ private com.squareup.okhttp.Call patchNamespacedControllerRevisionValidateBefore throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedControllerRevisionCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3033,7 +2961,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3075,7 +3003,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3094,14 +3022,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3185,7 +3109,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3227,7 +3151,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3246,14 +3170,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentScaleValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3337,7 +3257,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3379,7 +3299,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3398,14 +3318,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentStatusValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3489,7 +3405,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedStatefulSetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3531,7 +3447,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedStatefulSetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3550,14 +3466,10 @@ private com.squareup.okhttp.Call patchNamespacedStatefulSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedStatefulSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3641,7 +3553,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedStatefulSetScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3683,7 +3595,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedStatefulSetScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3702,14 +3614,10 @@ private com.squareup.okhttp.Call patchNamespacedStatefulSetScaleValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedStatefulSetScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedStatefulSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3793,7 +3701,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedStatefulSetStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3835,7 +3743,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedStatefulSetStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3854,14 +3762,10 @@ private com.squareup.okhttp.Call patchNamespacedStatefulSetStatusValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedStatefulSetStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedStatefulSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3946,7 +3850,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedControllerRevisionCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3992,7 +3896,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4006,14 +3910,10 @@ private com.squareup.okhttp.Call readNamespacedControllerRevisionValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedControllerRevisionCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -4101,7 +4001,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4147,7 +4047,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4161,14 +4061,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -4254,7 +4150,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4296,7 +4192,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4310,14 +4206,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentScaleValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4397,7 +4289,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4439,7 +4331,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4453,14 +4345,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4542,7 +4430,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedStatefulSetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4588,7 +4476,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedStatefulSetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4602,14 +4490,10 @@ private com.squareup.okhttp.Call readNamespacedStatefulSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedStatefulSetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -4695,7 +4579,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedStatefulSetScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4737,7 +4621,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedStatefulSetScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4751,14 +4635,10 @@ private com.squareup.okhttp.Call readNamespacedStatefulSetScaleValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedStatefulSetScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedStatefulSetScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4838,7 +4718,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedStatefulSetStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4880,7 +4760,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedStatefulSetStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4894,14 +4774,10 @@ private com.squareup.okhttp.Call readNamespacedStatefulSetStatusValidateBeforeCa throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedStatefulSetStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedStatefulSetStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4982,7 +4858,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedControllerRevisionCall(String name, String namespace, V1beta1ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5024,7 +4900,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, V1beta1ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5043,14 +4919,10 @@ private com.squareup.okhttp.Call replaceNamespacedControllerRevisionValidateBefo throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedControllerRevisionCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5134,7 +5006,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentCall(String name, String namespace, AppsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5176,7 +5048,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentValidateBeforeCall(String name, String namespace, AppsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5195,14 +5067,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5286,7 +5154,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentScaleCall(String name, String namespace, AppsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5328,7 +5196,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, AppsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5347,14 +5215,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentScaleValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5438,7 +5302,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentStatusCall(String name, String namespace, AppsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5480,7 +5344,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, AppsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5499,14 +5363,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentStatusValidateBefore throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5590,7 +5450,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedStatefulSetCall(String name, String namespace, V1beta1StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5632,7 +5492,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedStatefulSetValidateBeforeCall(String name, String namespace, V1beta1StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5651,14 +5511,10 @@ private com.squareup.okhttp.Call replaceNamespacedStatefulSetValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedStatefulSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5742,7 +5598,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedStatefulSetScaleCall(String name, String namespace, AppsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5784,7 +5640,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedStatefulSetScaleValidateBeforeCall(String name, String namespace, AppsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5803,14 +5659,10 @@ private com.squareup.okhttp.Call replaceNamespacedStatefulSetScaleValidateBefore throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedStatefulSetScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedStatefulSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5894,7 +5746,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedStatefulSetStatusCall(String name, String namespace, V1beta1StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5936,7 +5788,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedStatefulSetStatusValidateBeforeCall(String name, String namespace, V1beta1StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5955,14 +5807,10 @@ private com.squareup.okhttp.Call replaceNamespacedStatefulSetStatusValidateBefor throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedStatefulSetStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedStatefulSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta2Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta2Api.java index c82b3d23a5..4cd202a480 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta2Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AppsV1beta2Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -79,7 +79,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedControllerRevisionCall(String namespace, V1beta2ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -120,7 +120,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedControllerRevisionValidateBeforeCall(String namespace, V1beta2ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -134,14 +134,10 @@ private com.squareup.okhttp.Call createNamespacedControllerRevisionValidateBefor throw new ApiException("Missing the required parameter 'body' when calling createNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedControllerRevisionCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -221,7 +217,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedDaemonSetCall(String namespace, V1beta2DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -262,7 +258,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedDaemonSetValidateBeforeCall(String namespace, V1beta2DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -276,14 +272,10 @@ private com.squareup.okhttp.Call createNamespacedDaemonSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling createNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedDaemonSetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -363,7 +355,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedDeploymentCall(String namespace, V1beta2Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -404,7 +396,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedDeploymentValidateBeforeCall(String namespace, V1beta2Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -418,14 +410,10 @@ private com.squareup.okhttp.Call createNamespacedDeploymentValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling createNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedDeploymentCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -505,7 +493,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedReplicaSetCall(String namespace, V1beta2ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -546,7 +534,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedReplicaSetValidateBeforeCall(String namespace, V1beta2ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -560,14 +548,10 @@ private com.squareup.okhttp.Call createNamespacedReplicaSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling createNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedReplicaSetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -647,7 +631,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedStatefulSetCall(String namespace, V1beta2StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -688,7 +672,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedStatefulSetValidateBeforeCall(String namespace, V1beta2StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -702,14 +686,10 @@ private com.squareup.okhttp.Call createNamespacedStatefulSetValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling createNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedStatefulSetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -796,7 +776,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedControllerRevisionCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -853,7 +833,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedControllerRevisionValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -862,14 +842,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedControllerRevisionVal throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedControllerRevisionCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -977,7 +953,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedDaemonSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1034,7 +1010,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedDaemonSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1043,14 +1019,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedDaemonSetValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedDaemonSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1158,7 +1130,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1215,7 +1187,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1224,14 +1196,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentValidateBef throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedDeploymentCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1339,7 +1307,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedReplicaSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1396,7 +1364,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedReplicaSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1405,14 +1373,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedReplicaSetValidateBef throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedReplicaSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1520,7 +1484,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedStatefulSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1577,7 +1541,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedStatefulSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1586,14 +1550,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedStatefulSetValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedStatefulSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1698,7 +1658,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedControllerRevisionCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1746,7 +1706,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1765,14 +1725,10 @@ private com.squareup.okhttp.Call deleteNamespacedControllerRevisionValidateBefor throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedControllerRevisionCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1868,7 +1824,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedDaemonSetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1916,7 +1872,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedDaemonSetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1935,14 +1891,10 @@ private com.squareup.okhttp.Call deleteNamespacedDaemonSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedDaemonSetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2038,7 +1990,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedDeploymentCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2086,7 +2038,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedDeploymentValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2105,14 +2057,10 @@ private com.squareup.okhttp.Call deleteNamespacedDeploymentValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedDeploymentCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2208,7 +2156,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedReplicaSetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2256,7 +2204,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedReplicaSetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2275,14 +2223,10 @@ private com.squareup.okhttp.Call deleteNamespacedReplicaSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedReplicaSetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2378,7 +2322,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedStatefulSetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2426,7 +2370,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedStatefulSetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2445,14 +2389,10 @@ private com.squareup.okhttp.Call deleteNamespacedStatefulSetValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedStatefulSetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2541,7 +2481,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/"; @@ -2579,18 +2519,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -2667,7 +2603,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listControllerRevisionForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/controllerrevisions"; @@ -2723,18 +2659,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listControllerRevisionForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listControllerRevisionForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2838,7 +2770,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listDaemonSetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/daemonsets"; @@ -2894,18 +2826,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listDaemonSetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listDaemonSetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3009,7 +2937,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listDeploymentForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/deployments"; @@ -3065,18 +2993,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listDeploymentForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listDeploymentForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3181,7 +3105,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedControllerRevisionCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -3238,7 +3162,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedControllerRevisionValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3247,14 +3171,10 @@ private com.squareup.okhttp.Call listNamespacedControllerRevisionValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedControllerRevisionCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3362,7 +3282,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedDaemonSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -3419,7 +3339,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedDaemonSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3428,14 +3348,10 @@ private com.squareup.okhttp.Call listNamespacedDaemonSetValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedDaemonSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3543,7 +3459,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedDeploymentCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -3600,7 +3516,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedDeploymentValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3609,14 +3525,10 @@ private com.squareup.okhttp.Call listNamespacedDeploymentValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedDeploymentCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3724,7 +3636,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedReplicaSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -3781,7 +3693,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedReplicaSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3790,14 +3702,10 @@ private com.squareup.okhttp.Call listNamespacedReplicaSetValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedReplicaSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3905,7 +3813,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedStatefulSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -3962,7 +3870,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedStatefulSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3971,14 +3879,10 @@ private com.squareup.okhttp.Call listNamespacedStatefulSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedStatefulSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4085,7 +3989,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listReplicaSetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/replicasets"; @@ -4141,18 +4045,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listReplicaSetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listReplicaSetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4256,7 +4156,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listStatefulSetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/statefulsets"; @@ -4312,18 +4212,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listStatefulSetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listStatefulSetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4422,7 +4318,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedControllerRevisionCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4464,7 +4360,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4483,14 +4379,10 @@ private com.squareup.okhttp.Call patchNamespacedControllerRevisionValidateBefore throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedControllerRevisionCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4574,7 +4466,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDaemonSetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4616,7 +4508,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDaemonSetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4635,14 +4527,10 @@ private com.squareup.okhttp.Call patchNamespacedDaemonSetValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDaemonSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4726,7 +4614,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDaemonSetStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4768,7 +4656,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDaemonSetStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4787,14 +4675,10 @@ private com.squareup.okhttp.Call patchNamespacedDaemonSetStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDaemonSetStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDaemonSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4878,7 +4762,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4920,7 +4804,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4939,14 +4823,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5030,7 +4910,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5072,7 +4952,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5091,14 +4971,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentScaleValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5182,7 +5058,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5224,7 +5100,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5243,14 +5119,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentStatusValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5334,7 +5206,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicaSetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5376,7 +5248,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicaSetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5395,14 +5267,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicaSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicaSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5486,7 +5354,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicaSetScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5528,7 +5396,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicaSetScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5547,14 +5415,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicaSetScaleValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicaSetScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicaSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5638,7 +5502,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicaSetStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5680,7 +5544,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicaSetStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5699,14 +5563,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicaSetStatusValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicaSetStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicaSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5790,7 +5650,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedStatefulSetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5832,7 +5692,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedStatefulSetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5851,14 +5711,10 @@ private com.squareup.okhttp.Call patchNamespacedStatefulSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedStatefulSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5942,7 +5798,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedStatefulSetScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5984,7 +5840,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedStatefulSetScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6003,14 +5859,10 @@ private com.squareup.okhttp.Call patchNamespacedStatefulSetScaleValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedStatefulSetScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedStatefulSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6094,7 +5946,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedStatefulSetStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6136,7 +5988,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedStatefulSetStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6155,14 +6007,10 @@ private com.squareup.okhttp.Call patchNamespacedStatefulSetStatusValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedStatefulSetStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedStatefulSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6247,7 +6095,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedControllerRevisionCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6293,7 +6141,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6307,14 +6155,10 @@ private com.squareup.okhttp.Call readNamespacedControllerRevisionValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedControllerRevisionCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -6402,7 +6246,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDaemonSetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6448,7 +6292,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDaemonSetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6462,14 +6306,10 @@ private com.squareup.okhttp.Call readNamespacedDaemonSetValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDaemonSetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -6555,7 +6395,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDaemonSetStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6597,7 +6437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDaemonSetStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6611,14 +6451,10 @@ private com.squareup.okhttp.Call readNamespacedDaemonSetStatusValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDaemonSetStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDaemonSetStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6700,7 +6536,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6746,7 +6582,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6760,14 +6596,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -6853,7 +6685,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6895,7 +6727,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6909,14 +6741,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentScaleValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6996,7 +6824,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7038,7 +6866,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7052,14 +6880,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7141,7 +6965,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicaSetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7187,7 +7011,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicaSetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7201,14 +7025,10 @@ private com.squareup.okhttp.Call readNamespacedReplicaSetValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicaSetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -7294,7 +7114,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicaSetScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7336,7 +7156,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicaSetScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7350,14 +7170,10 @@ private com.squareup.okhttp.Call readNamespacedReplicaSetScaleValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicaSetScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicaSetScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7437,7 +7253,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicaSetStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7479,7 +7295,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicaSetStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7493,14 +7309,10 @@ private com.squareup.okhttp.Call readNamespacedReplicaSetStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicaSetStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicaSetStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7582,7 +7394,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedStatefulSetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7628,7 +7440,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedStatefulSetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7642,14 +7454,10 @@ private com.squareup.okhttp.Call readNamespacedStatefulSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedStatefulSetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -7735,7 +7543,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedStatefulSetScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7777,7 +7585,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedStatefulSetScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7791,14 +7599,10 @@ private com.squareup.okhttp.Call readNamespacedStatefulSetScaleValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedStatefulSetScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedStatefulSetScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7878,7 +7682,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedStatefulSetStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7920,7 +7724,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedStatefulSetStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7934,14 +7738,10 @@ private com.squareup.okhttp.Call readNamespacedStatefulSetStatusValidateBeforeCa throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedStatefulSetStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedStatefulSetStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8022,7 +7822,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedControllerRevisionCall(String name, String namespace, V1beta2ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8064,7 +7864,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedControllerRevisionValidateBeforeCall(String name, String namespace, V1beta2ControllerRevision body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8083,14 +7883,10 @@ private com.squareup.okhttp.Call replaceNamespacedControllerRevisionValidateBefo throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedControllerRevision(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedControllerRevisionCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8174,7 +7970,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDaemonSetCall(String name, String namespace, V1beta2DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8216,7 +8012,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDaemonSetValidateBeforeCall(String name, String namespace, V1beta2DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8235,14 +8031,10 @@ private com.squareup.okhttp.Call replaceNamespacedDaemonSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDaemonSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8326,7 +8118,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDaemonSetStatusCall(String name, String namespace, V1beta2DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8368,7 +8160,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDaemonSetStatusValidateBeforeCall(String name, String namespace, V1beta2DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8387,14 +8179,10 @@ private com.squareup.okhttp.Call replaceNamespacedDaemonSetStatusValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDaemonSetStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDaemonSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8478,7 +8266,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentCall(String name, String namespace, V1beta2Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8520,7 +8308,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentValidateBeforeCall(String name, String namespace, V1beta2Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8539,14 +8327,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8630,7 +8414,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentScaleCall(String name, String namespace, V1beta2Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8672,7 +8456,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, V1beta2Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8691,14 +8475,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentScaleValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8782,7 +8562,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentStatusCall(String name, String namespace, V1beta2Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8824,7 +8604,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, V1beta2Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8843,14 +8623,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentStatusValidateBefore throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8934,7 +8710,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicaSetCall(String name, String namespace, V1beta2ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8976,7 +8752,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicaSetValidateBeforeCall(String name, String namespace, V1beta2ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8995,14 +8771,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicaSetValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicaSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9086,7 +8858,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicaSetScaleCall(String name, String namespace, V1beta2Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9128,7 +8900,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicaSetScaleValidateBeforeCall(String name, String namespace, V1beta2Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9147,14 +8919,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicaSetScaleValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicaSetScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicaSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9238,7 +9006,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicaSetStatusCall(String name, String namespace, V1beta2ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9280,7 +9048,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicaSetStatusValidateBeforeCall(String name, String namespace, V1beta2ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9299,14 +9067,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicaSetStatusValidateBefore throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicaSetStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicaSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9390,7 +9154,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedStatefulSetCall(String name, String namespace, V1beta2StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9432,7 +9196,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedStatefulSetValidateBeforeCall(String name, String namespace, V1beta2StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9451,14 +9215,10 @@ private com.squareup.okhttp.Call replaceNamespacedStatefulSetValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedStatefulSet(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedStatefulSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9542,7 +9302,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedStatefulSetScaleCall(String name, String namespace, V1beta2Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9584,7 +9344,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedStatefulSetScaleValidateBeforeCall(String name, String namespace, V1beta2Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9603,14 +9363,10 @@ private com.squareup.okhttp.Call replaceNamespacedStatefulSetScaleValidateBefore throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedStatefulSetScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedStatefulSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9694,7 +9450,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedStatefulSetStatusCall(String name, String namespace, V1beta2StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9736,7 +9492,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedStatefulSetStatusValidateBeforeCall(String name, String namespace, V1beta2StatefulSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9755,14 +9511,10 @@ private com.squareup.okhttp.Call replaceNamespacedStatefulSetStatusValidateBefor throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedStatefulSetStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedStatefulSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationApi.java index 9c7919a8c1..d7f56d03af 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/authentication.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1Api.java index 226ea9725d..a5fc7f4f29 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -66,7 +66,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createTokenReviewCall(V1TokenReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authentication.k8s.io/v1/tokenreviews"; @@ -106,7 +106,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createTokenReviewValidateBeforeCall(V1TokenReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -115,14 +115,10 @@ private com.squareup.okhttp.Call createTokenReviewValidateBeforeCall(V1TokenRevi throw new ApiException("Missing the required parameter 'body' when calling createTokenReview(Async)"); } - + com.squareup.okhttp.Call call = createTokenReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -196,7 +192,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/authentication.k8s.io/v1/"; @@ -234,18 +230,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1beta1Api.java index 0ab4973f43..2f4bac2f98 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthenticationV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -66,7 +66,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createTokenReviewCall(V1beta1TokenReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authentication.k8s.io/v1beta1/tokenreviews"; @@ -106,7 +106,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createTokenReviewValidateBeforeCall(V1beta1TokenReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -115,14 +115,10 @@ private com.squareup.okhttp.Call createTokenReviewValidateBeforeCall(V1beta1Toke throw new ApiException("Missing the required parameter 'body' when calling createTokenReview(Async)"); } - + com.squareup.okhttp.Call call = createTokenReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -196,7 +192,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/authentication.k8s.io/v1beta1/"; @@ -234,18 +230,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationApi.java index 983ad3af7d..b59fde269e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1Api.java index 18c29ddd2b..8fb760c867 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedLocalSubjectAccessReviewCall(String namespace, V1LocalSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedLocalSubjectAccessReviewValidateBeforeCall(String namespace, V1LocalSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedLocalSubjectAccessReviewValidat throw new ApiException("Missing the required parameter 'body' when calling createNamespacedLocalSubjectAccessReview(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedLocalSubjectAccessReviewCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -211,7 +207,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createSelfSubjectAccessReviewCall(V1SelfSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1/selfsubjectaccessreviews"; @@ -251,7 +247,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createSelfSubjectAccessReviewValidateBeforeCall(V1SelfSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -260,14 +256,10 @@ private com.squareup.okhttp.Call createSelfSubjectAccessReviewValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling createSelfSubjectAccessReview(Async)"); } - + com.squareup.okhttp.Call call = createSelfSubjectAccessReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -343,7 +335,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createSelfSubjectRulesReviewCall(V1SelfSubjectRulesReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1/selfsubjectrulesreviews"; @@ -383,7 +375,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createSelfSubjectRulesReviewValidateBeforeCall(V1SelfSubjectRulesReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -392,14 +384,10 @@ private com.squareup.okhttp.Call createSelfSubjectRulesReviewValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling createSelfSubjectRulesReview(Async)"); } - + com.squareup.okhttp.Call call = createSelfSubjectRulesReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -475,7 +463,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createSubjectAccessReviewCall(V1SubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1/subjectaccessreviews"; @@ -515,7 +503,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createSubjectAccessReviewValidateBeforeCall(V1SubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -524,14 +512,10 @@ private com.squareup.okhttp.Call createSubjectAccessReviewValidateBeforeCall(V1S throw new ApiException("Missing the required parameter 'body' when calling createSubjectAccessReview(Async)"); } - + com.squareup.okhttp.Call call = createSubjectAccessReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -605,7 +589,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1/"; @@ -643,18 +627,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1beta1Api.java index d7a2fbd703..265cc431bf 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AuthorizationV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedLocalSubjectAccessReviewCall(String namespace, V1beta1LocalSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedLocalSubjectAccessReviewValidateBeforeCall(String namespace, V1beta1LocalSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedLocalSubjectAccessReviewValidat throw new ApiException("Missing the required parameter 'body' when calling createNamespacedLocalSubjectAccessReview(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedLocalSubjectAccessReviewCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -211,7 +207,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createSelfSubjectAccessReviewCall(V1beta1SelfSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews"; @@ -251,7 +247,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createSelfSubjectAccessReviewValidateBeforeCall(V1beta1SelfSubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -260,14 +256,10 @@ private com.squareup.okhttp.Call createSelfSubjectAccessReviewValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling createSelfSubjectAccessReview(Async)"); } - + com.squareup.okhttp.Call call = createSelfSubjectAccessReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -343,7 +335,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createSelfSubjectRulesReviewCall(V1beta1SelfSubjectRulesReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews"; @@ -383,7 +375,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createSelfSubjectRulesReviewValidateBeforeCall(V1beta1SelfSubjectRulesReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -392,14 +384,10 @@ private com.squareup.okhttp.Call createSelfSubjectRulesReviewValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling createSelfSubjectRulesReview(Async)"); } - + com.squareup.okhttp.Call call = createSelfSubjectRulesReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -475,7 +463,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createSubjectAccessReviewCall(V1beta1SubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1beta1/subjectaccessreviews"; @@ -515,7 +503,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createSubjectAccessReviewValidateBeforeCall(V1beta1SubjectAccessReview body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -524,14 +512,10 @@ private com.squareup.okhttp.Call createSubjectAccessReviewValidateBeforeCall(V1b throw new ApiException("Missing the required parameter 'body' when calling createSubjectAccessReview(Async)"); } - + com.squareup.okhttp.Call call = createSubjectAccessReviewCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -605,7 +589,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/authorization.k8s.io/v1beta1/"; @@ -643,18 +627,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingApi.java index c8d768883e..56f1b3dc3f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV1Api.java index 7a8e138244..3179029c51 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedHorizontalPodAutoscalerCall(String namespace, V1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedHorizontalPodAutoscalerValidateBeforeCall(String namespace, V1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedHorizontalPodAutoscalerValidate throw new ApiException("Missing the required parameter 'body' when calling createNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedHorizontalPodAutoscalerCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedHorizontalPodAutoscalerCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedHorizontalPodAutoscalerValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedHorizontalPodAutoscal throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedHorizontalPodAutoscalerCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedHorizontalPodAutoscalerCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedHorizontalPodAutoscalerValidate throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedHorizontalPodAutoscalerCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -686,7 +670,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listHorizontalPodAutoscalerForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/horizontalpodautoscalers"; @@ -742,18 +726,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listHorizontalPodAutoscalerForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listHorizontalPodAutoscalerForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -858,7 +838,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedHorizontalPodAutoscalerCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -915,7 +895,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedHorizontalPodAutoscalerValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -924,14 +904,10 @@ private com.squareup.okhttp.Call listNamespacedHorizontalPodAutoscalerValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedHorizontalPodAutoscalerCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerValidateB throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedHorizontalPodAutoscalerCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1185,7 +1157,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1227,7 +1199,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerStatusVal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedHorizontalPodAutoscalerStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedHorizontalPodAutoscalerStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1338,7 +1306,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1384,7 +1352,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1398,14 +1366,10 @@ private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedHorizontalPodAutoscalerCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1491,7 +1455,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1533,7 +1497,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1547,14 +1511,10 @@ private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerStatusVali throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedHorizontalPodAutoscalerStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedHorizontalPodAutoscalerStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1635,7 +1595,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerCall(String name, String namespace, V1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1677,7 +1637,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, V1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1696,14 +1656,10 @@ private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerValidat throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedHorizontalPodAutoscalerCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1787,7 +1743,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerStatusCall(String name, String namespace, V1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1829,7 +1785,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerStatusValidateBeforeCall(String name, String namespace, V1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1848,14 +1804,10 @@ private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerStatusV throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedHorizontalPodAutoscalerStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedHorizontalPodAutoscalerStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV2beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV2beta1Api.java index ba4bfa6a24..bb2ca34655 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV2beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/AutoscalingV2beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedHorizontalPodAutoscalerCall(String namespace, V2beta1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedHorizontalPodAutoscalerValidateBeforeCall(String namespace, V2beta1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedHorizontalPodAutoscalerValidate throw new ApiException("Missing the required parameter 'body' when calling createNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedHorizontalPodAutoscalerCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedHorizontalPodAutoscalerCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedHorizontalPodAutoscalerValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedHorizontalPodAutoscal throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedHorizontalPodAutoscalerCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedHorizontalPodAutoscalerCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedHorizontalPodAutoscalerValidate throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedHorizontalPodAutoscalerCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -686,7 +670,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listHorizontalPodAutoscalerForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/horizontalpodautoscalers"; @@ -742,18 +726,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listHorizontalPodAutoscalerForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listHorizontalPodAutoscalerForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -858,7 +838,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedHorizontalPodAutoscalerCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -915,7 +895,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedHorizontalPodAutoscalerValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -924,14 +904,10 @@ private com.squareup.okhttp.Call listNamespacedHorizontalPodAutoscalerValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedHorizontalPodAutoscalerCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerValidateB throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedHorizontalPodAutoscalerCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1185,7 +1157,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1227,7 +1199,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call patchNamespacedHorizontalPodAutoscalerStatusVal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedHorizontalPodAutoscalerStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedHorizontalPodAutoscalerStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1338,7 +1306,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1384,7 +1352,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1398,14 +1366,10 @@ private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedHorizontalPodAutoscalerCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1491,7 +1455,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1533,7 +1497,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1547,14 +1511,10 @@ private com.squareup.okhttp.Call readNamespacedHorizontalPodAutoscalerStatusVali throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedHorizontalPodAutoscalerStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedHorizontalPodAutoscalerStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1635,7 +1595,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerCall(String name, String namespace, V2beta1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1677,7 +1637,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerValidateBeforeCall(String name, String namespace, V2beta1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1696,14 +1656,10 @@ private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerValidat throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedHorizontalPodAutoscaler(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedHorizontalPodAutoscalerCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1787,7 +1743,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerStatusCall(String name, String namespace, V2beta1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1829,7 +1785,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerStatusValidateBeforeCall(String name, String namespace, V2beta1HorizontalPodAutoscaler body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1848,14 +1804,10 @@ private com.squareup.okhttp.Call replaceNamespacedHorizontalPodAutoscalerStatusV throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedHorizontalPodAutoscalerStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedHorizontalPodAutoscalerStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchApi.java index 5a13de4160..f03925f827 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1Api.java index 8db1ca6596..7bf9037208 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedJobCall(String namespace, V1Job body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedJobValidateBeforeCall(String namespace, V1Job body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedJobValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling createNamespacedJob(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedJobCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedJobCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedJobValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedJobValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedJob(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedJobCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedJobCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedJobValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedJobValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedJob(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedJobCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -686,7 +670,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listJobForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1/jobs"; @@ -742,18 +726,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listJobForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listJobForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -858,7 +838,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedJobCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -915,7 +895,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedJobValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -924,14 +904,10 @@ private com.squareup.okhttp.Call listNamespacedJobValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedJob(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedJobCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedJobCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedJobValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedJobValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedJob(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedJobCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1185,7 +1157,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedJobStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1227,7 +1199,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedJobStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call patchNamespacedJobStatusValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedJobStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedJobStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1338,7 +1306,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedJobCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1384,7 +1352,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedJobValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1398,14 +1366,10 @@ private com.squareup.okhttp.Call readNamespacedJobValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedJob(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedJobCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1491,7 +1455,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedJobStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1533,7 +1497,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedJobStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1547,14 +1511,10 @@ private com.squareup.okhttp.Call readNamespacedJobStatusValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedJobStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedJobStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1635,7 +1595,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedJobCall(String name, String namespace, V1Job body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1677,7 +1637,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedJobValidateBeforeCall(String name, String namespace, V1Job body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1696,14 +1656,10 @@ private com.squareup.okhttp.Call replaceNamespacedJobValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedJob(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedJobCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1787,7 +1743,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedJobStatusCall(String name, String namespace, V1Job body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1829,7 +1785,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedJobStatusValidateBeforeCall(String name, String namespace, V1Job body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1848,14 +1804,10 @@ private com.squareup.okhttp.Call replaceNamespacedJobStatusValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedJobStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedJobStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1beta1Api.java index c5fc5e68d7..938fd031d8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedCronJobCall(String namespace, V1beta1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedCronJobValidateBeforeCall(String namespace, V1beta1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedCronJobValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling createNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedCronJobCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedCronJobCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedCronJobValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedCronJobValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedCronJobCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedCronJobCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedCronJobValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedCronJobValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedCronJobCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -686,7 +670,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listCronJobForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/cronjobs"; @@ -742,18 +726,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listCronJobForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listCronJobForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -858,7 +838,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedCronJobCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -915,7 +895,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedCronJobValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -924,14 +904,10 @@ private com.squareup.okhttp.Call listNamespacedCronJobValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedCronJobCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedCronJobCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedCronJobValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedCronJobValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedCronJobCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1185,7 +1157,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedCronJobStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1227,7 +1199,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedCronJobStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call patchNamespacedCronJobStatusValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedCronJobStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedCronJobStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1338,7 +1306,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedCronJobCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1384,7 +1352,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedCronJobValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1398,14 +1366,10 @@ private com.squareup.okhttp.Call readNamespacedCronJobValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedCronJobCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1491,7 +1455,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedCronJobStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1533,7 +1497,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedCronJobStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1547,14 +1511,10 @@ private com.squareup.okhttp.Call readNamespacedCronJobStatusValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedCronJobStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedCronJobStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1635,7 +1595,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedCronJobCall(String name, String namespace, V1beta1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1677,7 +1637,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedCronJobValidateBeforeCall(String name, String namespace, V1beta1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1696,14 +1656,10 @@ private com.squareup.okhttp.Call replaceNamespacedCronJobValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedCronJobCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1787,7 +1743,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedCronJobStatusCall(String name, String namespace, V1beta1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1829,7 +1785,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedCronJobStatusValidateBeforeCall(String name, String namespace, V1beta1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1848,14 +1804,10 @@ private com.squareup.okhttp.Call replaceNamespacedCronJobStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedCronJobStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedCronJobStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV2alpha1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV2alpha1Api.java index 40805d7df8..8963266f5b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV2alpha1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/BatchV2alpha1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedCronJobCall(String namespace, V2alpha1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedCronJobValidateBeforeCall(String namespace, V2alpha1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedCronJobValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling createNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedCronJobCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedCronJobCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedCronJobValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedCronJobValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedCronJobCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedCronJobCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedCronJobValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedCronJobValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedCronJobCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -686,7 +670,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listCronJobForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/cronjobs"; @@ -742,18 +726,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listCronJobForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listCronJobForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -858,7 +838,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedCronJobCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -915,7 +895,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedCronJobValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -924,14 +904,10 @@ private com.squareup.okhttp.Call listNamespacedCronJobValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedCronJobCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedCronJobCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedCronJobValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedCronJobValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedCronJobCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1185,7 +1157,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedCronJobStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1227,7 +1199,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedCronJobStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call patchNamespacedCronJobStatusValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedCronJobStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedCronJobStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1338,7 +1306,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedCronJobCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1384,7 +1352,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedCronJobValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1398,14 +1366,10 @@ private com.squareup.okhttp.Call readNamespacedCronJobValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedCronJobCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1491,7 +1455,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedCronJobStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1533,7 +1497,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedCronJobStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1547,14 +1511,10 @@ private com.squareup.okhttp.Call readNamespacedCronJobStatusValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedCronJobStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedCronJobStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1635,7 +1595,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedCronJobCall(String name, String namespace, V2alpha1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1677,7 +1637,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedCronJobValidateBeforeCall(String name, String namespace, V2alpha1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1696,14 +1656,10 @@ private com.squareup.okhttp.Call replaceNamespacedCronJobValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedCronJob(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedCronJobCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1787,7 +1743,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedCronJobStatusCall(String name, String namespace, V2alpha1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1829,7 +1785,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedCronJobStatusValidateBeforeCall(String name, String namespace, V2alpha1CronJob body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1848,14 +1804,10 @@ private com.squareup.okhttp.Call replaceNamespacedCronJobStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedCronJobStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedCronJobStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesApi.java index dcfdfca7ad..7f3cff7617 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesV1beta1Api.java index a10f014579..e3909a1308 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/CertificatesV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -69,7 +69,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createCertificateSigningRequestCall(V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests"; @@ -109,7 +109,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createCertificateSigningRequestValidateBeforeCall(V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -118,14 +118,10 @@ private com.squareup.okhttp.Call createCertificateSigningRequestValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling createCertificateSigningRequest(Async)"); } - + com.squareup.okhttp.Call call = createCertificateSigningRequestCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -205,7 +201,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCertificateSigningRequestCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -252,7 +248,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCertificateSigningRequestValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -266,14 +262,10 @@ private com.squareup.okhttp.Call deleteCertificateSigningRequestValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling deleteCertificateSigningRequest(Async)"); } - + com.squareup.okhttp.Call call = deleteCertificateSigningRequestCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -368,7 +360,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionCertificateSigningRequestCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests"; @@ -424,18 +416,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionCertificateSigningRequestValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionCertificateSigningRequestCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -530,7 +518,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/"; @@ -568,18 +556,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -656,7 +640,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listCertificateSigningRequestCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests"; @@ -712,18 +696,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listCertificateSigningRequestValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listCertificateSigningRequestCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -821,7 +801,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchCertificateSigningRequestCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -862,7 +842,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchCertificateSigningRequestValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -876,14 +856,10 @@ private com.squareup.okhttp.Call patchCertificateSigningRequestValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchCertificateSigningRequest(Async)"); } - + com.squareup.okhttp.Call call = patchCertificateSigningRequestCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -964,7 +940,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readCertificateSigningRequestCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1009,7 +985,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readCertificateSigningRequestValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1018,14 +994,10 @@ private com.squareup.okhttp.Call readCertificateSigningRequestValidateBeforeCall throw new ApiException("Missing the required parameter 'name' when calling readCertificateSigningRequest(Async)"); } - + com.squareup.okhttp.Call call = readCertificateSigningRequestCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1108,7 +1080,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceCertificateSigningRequestCall(String name, V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1149,7 +1121,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceCertificateSigningRequestValidateBeforeCall(String name, V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1163,14 +1135,10 @@ private com.squareup.okhttp.Call replaceCertificateSigningRequestValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceCertificateSigningRequest(Async)"); } - + com.squareup.okhttp.Call call = replaceCertificateSigningRequestCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1250,7 +1218,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceCertificateSigningRequestApprovalCall(String name, V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1291,7 +1259,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceCertificateSigningRequestApprovalValidateBeforeCall(String name, V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1305,14 +1273,10 @@ private com.squareup.okhttp.Call replaceCertificateSigningRequestApprovalValidat throw new ApiException("Missing the required parameter 'body' when calling replaceCertificateSigningRequestApproval(Async)"); } - + com.squareup.okhttp.Call call = replaceCertificateSigningRequestApprovalCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1392,7 +1356,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceCertificateSigningRequestStatusCall(String name, V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1433,7 +1397,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceCertificateSigningRequestStatusValidateBeforeCall(String name, V1beta1CertificateSigningRequest body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1447,14 +1411,10 @@ private com.squareup.okhttp.Call replaceCertificateSigningRequestStatusValidateB throw new ApiException("Missing the required parameter 'body' when calling replaceCertificateSigningRequestStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceCertificateSigningRequestStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/CoreApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/CoreApi.java index 5460aca272..7bb90f5aa6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/CoreApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/CoreApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIVersionsCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIVersionsValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIVersionsCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/CoreV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/CoreV1Api.java index d1f853080b..e0cb39b82b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/CoreV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/CoreV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -103,7 +103,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call connectDeleteNamespacedPodProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -145,7 +145,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectDeleteNamespacedPodProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -159,14 +159,10 @@ private com.squareup.okhttp.Call connectDeleteNamespacedPodProxyValidateBeforeCa throw new ApiException("Missing the required parameter 'namespace' when calling connectDeleteNamespacedPodProxy(Async)"); } - + com.squareup.okhttp.Call call = connectDeleteNamespacedPodProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -247,7 +243,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectDeleteNamespacedPodProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -290,7 +286,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectDeleteNamespacedPodProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -309,14 +305,10 @@ private com.squareup.okhttp.Call connectDeleteNamespacedPodProxyWithPathValidate throw new ApiException("Missing the required parameter 'path' when calling connectDeleteNamespacedPodProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectDeleteNamespacedPodProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -399,7 +391,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectDeleteNamespacedServiceProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -441,7 +433,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectDeleteNamespacedServiceProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -455,14 +447,10 @@ private com.squareup.okhttp.Call connectDeleteNamespacedServiceProxyValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling connectDeleteNamespacedServiceProxy(Async)"); } - + com.squareup.okhttp.Call call = connectDeleteNamespacedServiceProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -543,7 +531,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectDeleteNamespacedServiceProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -586,7 +574,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectDeleteNamespacedServiceProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -605,14 +593,10 @@ private com.squareup.okhttp.Call connectDeleteNamespacedServiceProxyWithPathVali throw new ApiException("Missing the required parameter 'path' when calling connectDeleteNamespacedServiceProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectDeleteNamespacedServiceProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -694,7 +678,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectDeleteNodeProxyCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -735,7 +719,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectDeleteNodeProxyValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -744,14 +728,10 @@ private com.squareup.okhttp.Call connectDeleteNodeProxyValidateBeforeCall(String throw new ApiException("Missing the required parameter 'name' when calling connectDeleteNodeProxy(Async)"); } - + com.squareup.okhttp.Call call = connectDeleteNodeProxyCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -828,7 +808,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectDeleteNodeProxyWithPathCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -870,7 +850,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectDeleteNodeProxyWithPathValidateBeforeCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -884,14 +864,10 @@ private com.squareup.okhttp.Call connectDeleteNodeProxyWithPathValidateBeforeCal throw new ApiException("Missing the required parameter 'path' when calling connectDeleteNodeProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectDeleteNodeProxyWithPathCall(name, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -975,7 +951,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNamespacedPodAttachCall(String name, String namespace, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/attach" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1025,7 +1001,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNamespacedPodAttachValidateBeforeCall(String name, String namespace, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1039,14 +1015,10 @@ private com.squareup.okhttp.Call connectGetNamespacedPodAttachValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling connectGetNamespacedPodAttach(Async)"); } - + com.squareup.okhttp.Call call = connectGetNamespacedPodAttachCall(name, namespace, container, stderr, stdin, stdout, tty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1143,7 +1115,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNamespacedPodExecCall(String name, String namespace, String command, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/exec" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1195,7 +1167,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNamespacedPodExecValidateBeforeCall(String name, String namespace, String command, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1209,14 +1181,10 @@ private com.squareup.okhttp.Call connectGetNamespacedPodExecValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling connectGetNamespacedPodExec(Async)"); } - + com.squareup.okhttp.Call call = connectGetNamespacedPodExecCall(name, namespace, command, container, stderr, stdin, stdout, tty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1311,7 +1279,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNamespacedPodPortforwardCall(String name, String namespace, Integer ports, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/portforward" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1353,7 +1321,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNamespacedPodPortforwardValidateBeforeCall(String name, String namespace, Integer ports, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1367,14 +1335,10 @@ private com.squareup.okhttp.Call connectGetNamespacedPodPortforwardValidateBefor throw new ApiException("Missing the required parameter 'namespace' when calling connectGetNamespacedPodPortforward(Async)"); } - + com.squareup.okhttp.Call call = connectGetNamespacedPodPortforwardCall(name, namespace, ports, progressListener, progressRequestListener); return call; - - - - } /** @@ -1454,7 +1418,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNamespacedPodProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1496,7 +1460,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNamespacedPodProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1510,14 +1474,10 @@ private com.squareup.okhttp.Call connectGetNamespacedPodProxyValidateBeforeCall( throw new ApiException("Missing the required parameter 'namespace' when calling connectGetNamespacedPodProxy(Async)"); } - + com.squareup.okhttp.Call call = connectGetNamespacedPodProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -1598,7 +1558,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNamespacedPodProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1641,7 +1601,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNamespacedPodProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1660,14 +1620,10 @@ private com.squareup.okhttp.Call connectGetNamespacedPodProxyWithPathValidateBef throw new ApiException("Missing the required parameter 'path' when calling connectGetNamespacedPodProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectGetNamespacedPodProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -1750,7 +1706,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNamespacedServiceProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1792,7 +1748,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNamespacedServiceProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1806,14 +1762,10 @@ private com.squareup.okhttp.Call connectGetNamespacedServiceProxyValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling connectGetNamespacedServiceProxy(Async)"); } - + com.squareup.okhttp.Call call = connectGetNamespacedServiceProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -1894,7 +1846,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNamespacedServiceProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1937,7 +1889,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNamespacedServiceProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1956,14 +1908,10 @@ private com.squareup.okhttp.Call connectGetNamespacedServiceProxyWithPathValidat throw new ApiException("Missing the required parameter 'path' when calling connectGetNamespacedServiceProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectGetNamespacedServiceProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -2045,7 +1993,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNodeProxyCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -2086,7 +2034,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNodeProxyValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2095,14 +2043,10 @@ private com.squareup.okhttp.Call connectGetNodeProxyValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'name' when calling connectGetNodeProxy(Async)"); } - + com.squareup.okhttp.Call call = connectGetNodeProxyCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -2179,7 +2123,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectGetNodeProxyWithPathCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2221,7 +2165,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectGetNodeProxyWithPathValidateBeforeCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2235,14 +2179,10 @@ private com.squareup.okhttp.Call connectGetNodeProxyWithPathValidateBeforeCall(S throw new ApiException("Missing the required parameter 'path' when calling connectGetNodeProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectGetNodeProxyWithPathCall(name, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -2322,7 +2262,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectHeadNamespacedPodProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2364,7 +2304,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectHeadNamespacedPodProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2378,14 +2318,10 @@ private com.squareup.okhttp.Call connectHeadNamespacedPodProxyValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling connectHeadNamespacedPodProxy(Async)"); } - + com.squareup.okhttp.Call call = connectHeadNamespacedPodProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -2466,7 +2402,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectHeadNamespacedPodProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2509,7 +2445,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectHeadNamespacedPodProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2528,14 +2464,10 @@ private com.squareup.okhttp.Call connectHeadNamespacedPodProxyWithPathValidateBe throw new ApiException("Missing the required parameter 'path' when calling connectHeadNamespacedPodProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectHeadNamespacedPodProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -2618,7 +2550,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectHeadNamespacedServiceProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2660,7 +2592,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectHeadNamespacedServiceProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2674,14 +2606,10 @@ private com.squareup.okhttp.Call connectHeadNamespacedServiceProxyValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling connectHeadNamespacedServiceProxy(Async)"); } - + com.squareup.okhttp.Call call = connectHeadNamespacedServiceProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -2762,7 +2690,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectHeadNamespacedServiceProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2805,7 +2733,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectHeadNamespacedServiceProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2824,14 +2752,10 @@ private com.squareup.okhttp.Call connectHeadNamespacedServiceProxyWithPathValida throw new ApiException("Missing the required parameter 'path' when calling connectHeadNamespacedServiceProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectHeadNamespacedServiceProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -2913,7 +2837,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectHeadNodeProxyCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -2954,7 +2878,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectHeadNodeProxyValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2963,14 +2887,10 @@ private com.squareup.okhttp.Call connectHeadNodeProxyValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'name' when calling connectHeadNodeProxy(Async)"); } - + com.squareup.okhttp.Call call = connectHeadNodeProxyCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -3047,7 +2967,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectHeadNodeProxyWithPathCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3089,7 +3009,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectHeadNodeProxyWithPathValidateBeforeCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3103,14 +3023,10 @@ private com.squareup.okhttp.Call connectHeadNodeProxyWithPathValidateBeforeCall( throw new ApiException("Missing the required parameter 'path' when calling connectHeadNodeProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectHeadNodeProxyWithPathCall(name, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -3190,7 +3106,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectOptionsNamespacedPodProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3232,7 +3148,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectOptionsNamespacedPodProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3246,14 +3162,10 @@ private com.squareup.okhttp.Call connectOptionsNamespacedPodProxyValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling connectOptionsNamespacedPodProxy(Async)"); } - + com.squareup.okhttp.Call call = connectOptionsNamespacedPodProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -3334,7 +3246,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectOptionsNamespacedPodProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3377,7 +3289,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectOptionsNamespacedPodProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3396,14 +3308,10 @@ private com.squareup.okhttp.Call connectOptionsNamespacedPodProxyWithPathValidat throw new ApiException("Missing the required parameter 'path' when calling connectOptionsNamespacedPodProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectOptionsNamespacedPodProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -3486,7 +3394,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectOptionsNamespacedServiceProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3528,7 +3436,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectOptionsNamespacedServiceProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3542,14 +3450,10 @@ private com.squareup.okhttp.Call connectOptionsNamespacedServiceProxyValidateBef throw new ApiException("Missing the required parameter 'namespace' when calling connectOptionsNamespacedServiceProxy(Async)"); } - + com.squareup.okhttp.Call call = connectOptionsNamespacedServiceProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -3630,7 +3534,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectOptionsNamespacedServiceProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3673,7 +3577,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectOptionsNamespacedServiceProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3692,14 +3596,10 @@ private com.squareup.okhttp.Call connectOptionsNamespacedServiceProxyWithPathVal throw new ApiException("Missing the required parameter 'path' when calling connectOptionsNamespacedServiceProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectOptionsNamespacedServiceProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -3781,7 +3681,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectOptionsNodeProxyCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3822,7 +3722,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectOptionsNodeProxyValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3831,14 +3731,10 @@ private com.squareup.okhttp.Call connectOptionsNodeProxyValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'name' when calling connectOptionsNodeProxy(Async)"); } - + com.squareup.okhttp.Call call = connectOptionsNodeProxyCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -3915,7 +3811,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectOptionsNodeProxyWithPathCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3957,7 +3853,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectOptionsNodeProxyWithPathValidateBeforeCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3971,14 +3867,10 @@ private com.squareup.okhttp.Call connectOptionsNodeProxyWithPathValidateBeforeCa throw new ApiException("Missing the required parameter 'path' when calling connectOptionsNodeProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectOptionsNodeProxyWithPathCall(name, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -4058,7 +3950,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPatchNamespacedPodProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4100,7 +3992,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPatchNamespacedPodProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4114,14 +4006,10 @@ private com.squareup.okhttp.Call connectPatchNamespacedPodProxyValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling connectPatchNamespacedPodProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPatchNamespacedPodProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -4202,7 +4090,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPatchNamespacedPodProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4245,7 +4133,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPatchNamespacedPodProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4264,14 +4152,10 @@ private com.squareup.okhttp.Call connectPatchNamespacedPodProxyWithPathValidateB throw new ApiException("Missing the required parameter 'path' when calling connectPatchNamespacedPodProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPatchNamespacedPodProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -4354,7 +4238,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPatchNamespacedServiceProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4396,7 +4280,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPatchNamespacedServiceProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4410,14 +4294,10 @@ private com.squareup.okhttp.Call connectPatchNamespacedServiceProxyValidateBefor throw new ApiException("Missing the required parameter 'namespace' when calling connectPatchNamespacedServiceProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPatchNamespacedServiceProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -4498,7 +4378,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPatchNamespacedServiceProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4541,7 +4421,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPatchNamespacedServiceProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4560,14 +4440,10 @@ private com.squareup.okhttp.Call connectPatchNamespacedServiceProxyWithPathValid throw new ApiException("Missing the required parameter 'path' when calling connectPatchNamespacedServiceProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPatchNamespacedServiceProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -4649,7 +4525,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPatchNodeProxyCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -4690,7 +4566,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPatchNodeProxyValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4699,14 +4575,10 @@ private com.squareup.okhttp.Call connectPatchNodeProxyValidateBeforeCall(String throw new ApiException("Missing the required parameter 'name' when calling connectPatchNodeProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPatchNodeProxyCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -4783,7 +4655,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPatchNodeProxyWithPathCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4825,7 +4697,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPatchNodeProxyWithPathValidateBeforeCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4839,14 +4711,10 @@ private com.squareup.okhttp.Call connectPatchNodeProxyWithPathValidateBeforeCall throw new ApiException("Missing the required parameter 'path' when calling connectPatchNodeProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPatchNodeProxyWithPathCall(name, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -4930,7 +4798,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNamespacedPodAttachCall(String name, String namespace, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/attach" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4980,7 +4848,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNamespacedPodAttachValidateBeforeCall(String name, String namespace, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4994,14 +4862,10 @@ private com.squareup.okhttp.Call connectPostNamespacedPodAttachValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling connectPostNamespacedPodAttach(Async)"); } - + com.squareup.okhttp.Call call = connectPostNamespacedPodAttachCall(name, namespace, container, stderr, stdin, stdout, tty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5098,7 +4962,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNamespacedPodExecCall(String name, String namespace, String command, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/exec" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5150,7 +5014,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNamespacedPodExecValidateBeforeCall(String name, String namespace, String command, String container, Boolean stderr, Boolean stdin, Boolean stdout, Boolean tty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5164,14 +5028,10 @@ private com.squareup.okhttp.Call connectPostNamespacedPodExecValidateBeforeCall( throw new ApiException("Missing the required parameter 'namespace' when calling connectPostNamespacedPodExec(Async)"); } - + com.squareup.okhttp.Call call = connectPostNamespacedPodExecCall(name, namespace, command, container, stderr, stdin, stdout, tty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5266,7 +5126,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNamespacedPodPortforwardCall(String name, String namespace, Integer ports, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/portforward" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5308,7 +5168,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNamespacedPodPortforwardValidateBeforeCall(String name, String namespace, Integer ports, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5322,14 +5182,10 @@ private com.squareup.okhttp.Call connectPostNamespacedPodPortforwardValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling connectPostNamespacedPodPortforward(Async)"); } - + com.squareup.okhttp.Call call = connectPostNamespacedPodPortforwardCall(name, namespace, ports, progressListener, progressRequestListener); return call; - - - - } /** @@ -5409,7 +5265,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNamespacedPodProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5451,7 +5307,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNamespacedPodProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5465,14 +5321,10 @@ private com.squareup.okhttp.Call connectPostNamespacedPodProxyValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling connectPostNamespacedPodProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPostNamespacedPodProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -5553,7 +5405,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNamespacedPodProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5596,7 +5448,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNamespacedPodProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5615,14 +5467,10 @@ private com.squareup.okhttp.Call connectPostNamespacedPodProxyWithPathValidateBe throw new ApiException("Missing the required parameter 'path' when calling connectPostNamespacedPodProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPostNamespacedPodProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -5705,7 +5553,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNamespacedServiceProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5747,7 +5595,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNamespacedServiceProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5761,14 +5609,10 @@ private com.squareup.okhttp.Call connectPostNamespacedServiceProxyValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling connectPostNamespacedServiceProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPostNamespacedServiceProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -5849,7 +5693,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNamespacedServiceProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5892,7 +5736,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNamespacedServiceProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5911,14 +5755,10 @@ private com.squareup.okhttp.Call connectPostNamespacedServiceProxyWithPathValida throw new ApiException("Missing the required parameter 'path' when calling connectPostNamespacedServiceProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPostNamespacedServiceProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -6000,7 +5840,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNodeProxyCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -6041,7 +5881,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNodeProxyValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6050,14 +5890,10 @@ private com.squareup.okhttp.Call connectPostNodeProxyValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'name' when calling connectPostNodeProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPostNodeProxyCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -6134,7 +5970,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPostNodeProxyWithPathCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6176,7 +6012,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPostNodeProxyWithPathValidateBeforeCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6190,14 +6026,10 @@ private com.squareup.okhttp.Call connectPostNodeProxyWithPathValidateBeforeCall( throw new ApiException("Missing the required parameter 'path' when calling connectPostNodeProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPostNodeProxyWithPathCall(name, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -6277,7 +6109,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPutNamespacedPodProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6319,7 +6151,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPutNamespacedPodProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6333,14 +6165,10 @@ private com.squareup.okhttp.Call connectPutNamespacedPodProxyValidateBeforeCall( throw new ApiException("Missing the required parameter 'namespace' when calling connectPutNamespacedPodProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPutNamespacedPodProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -6421,7 +6249,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPutNamespacedPodProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6464,7 +6292,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPutNamespacedPodProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6483,14 +6311,10 @@ private com.squareup.okhttp.Call connectPutNamespacedPodProxyWithPathValidateBef throw new ApiException("Missing the required parameter 'path' when calling connectPutNamespacedPodProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPutNamespacedPodProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -6573,7 +6397,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPutNamespacedServiceProxyCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6615,7 +6439,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPutNamespacedServiceProxyValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6629,14 +6453,10 @@ private com.squareup.okhttp.Call connectPutNamespacedServiceProxyValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling connectPutNamespacedServiceProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPutNamespacedServiceProxyCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -6717,7 +6537,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPutNamespacedServiceProxyWithPathCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6760,7 +6580,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPutNamespacedServiceProxyWithPathValidateBeforeCall(String name, String namespace, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6779,14 +6599,10 @@ private com.squareup.okhttp.Call connectPutNamespacedServiceProxyWithPathValidat throw new ApiException("Missing the required parameter 'path' when calling connectPutNamespacedServiceProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPutNamespacedServiceProxyWithPathCall(name, namespace, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -6868,7 +6684,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPutNodeProxyCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -6909,7 +6725,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPutNodeProxyValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6918,14 +6734,10 @@ private com.squareup.okhttp.Call connectPutNodeProxyValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'name' when calling connectPutNodeProxy(Async)"); } - + com.squareup.okhttp.Call call = connectPutNodeProxyCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -7002,7 +6814,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call connectPutNodeProxyWithPathCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/proxy/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7044,7 +6856,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call connectPutNodeProxyWithPathValidateBeforeCall(String name, String path, String path2, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7058,14 +6870,10 @@ private com.squareup.okhttp.Call connectPutNodeProxyWithPathValidateBeforeCall(S throw new ApiException("Missing the required parameter 'path' when calling connectPutNodeProxyWithPath(Async)"); } - + com.squareup.okhttp.Call call = connectPutNodeProxyWithPathCall(name, path, path2, progressListener, progressRequestListener); return call; - - - - } /** @@ -7144,7 +6952,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespaceCall(V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces"; @@ -7184,7 +6992,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespaceValidateBeforeCall(V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7193,14 +7001,10 @@ private com.squareup.okhttp.Call createNamespaceValidateBeforeCall(V1Namespace b throw new ApiException("Missing the required parameter 'body' when calling createNamespace(Async)"); } - + com.squareup.okhttp.Call call = createNamespaceCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7277,7 +7081,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedBindingCall(String namespace, V1Binding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/bindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -7318,7 +7122,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedBindingValidateBeforeCall(String namespace, V1Binding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7332,14 +7136,10 @@ private com.squareup.okhttp.Call createNamespacedBindingValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling createNamespacedBinding(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedBindingCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7419,7 +7219,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedConfigMapCall(String namespace, V1ConfigMap body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/configmaps" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -7460,7 +7260,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedConfigMapValidateBeforeCall(String namespace, V1ConfigMap body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7474,14 +7274,10 @@ private com.squareup.okhttp.Call createNamespacedConfigMapValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling createNamespacedConfigMap(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedConfigMapCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7561,7 +7357,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedEndpointsCall(String namespace, V1Endpoints body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/endpoints" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -7602,7 +7398,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedEndpointsValidateBeforeCall(String namespace, V1Endpoints body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7616,14 +7412,10 @@ private com.squareup.okhttp.Call createNamespacedEndpointsValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling createNamespacedEndpoints(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedEndpointsCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7703,7 +7495,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedEventCall(String namespace, V1Event body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/events" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -7744,7 +7536,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedEventValidateBeforeCall(String namespace, V1Event body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7758,14 +7550,10 @@ private com.squareup.okhttp.Call createNamespacedEventValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling createNamespacedEvent(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedEventCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7845,7 +7633,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedLimitRangeCall(String namespace, V1LimitRange body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/limitranges" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -7886,7 +7674,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedLimitRangeValidateBeforeCall(String namespace, V1LimitRange body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7900,14 +7688,10 @@ private com.squareup.okhttp.Call createNamespacedLimitRangeValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling createNamespacedLimitRange(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedLimitRangeCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7987,7 +7771,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedPersistentVolumeClaimCall(String namespace, V1PersistentVolumeClaim body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -8028,7 +7812,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedPersistentVolumeClaimValidateBeforeCall(String namespace, V1PersistentVolumeClaim body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8042,14 +7826,10 @@ private com.squareup.okhttp.Call createNamespacedPersistentVolumeClaimValidateBe throw new ApiException("Missing the required parameter 'body' when calling createNamespacedPersistentVolumeClaim(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedPersistentVolumeClaimCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8129,7 +7909,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedPodCall(String namespace, V1Pod body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -8170,7 +7950,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedPodValidateBeforeCall(String namespace, V1Pod body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8184,14 +7964,10 @@ private com.squareup.okhttp.Call createNamespacedPodValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling createNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedPodCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8272,7 +8048,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedPodBindingCall(String name, String namespace, V1Binding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/binding" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8314,7 +8090,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedPodBindingValidateBeforeCall(String name, String namespace, V1Binding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8333,14 +8109,10 @@ private com.squareup.okhttp.Call createNamespacedPodBindingValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling createNamespacedPodBinding(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedPodBindingCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8424,7 +8196,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedPodEvictionCall(String name, String namespace, V1beta1Eviction body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/eviction" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8466,7 +8238,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedPodEvictionValidateBeforeCall(String name, String namespace, V1beta1Eviction body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8485,14 +8257,10 @@ private com.squareup.okhttp.Call createNamespacedPodEvictionValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling createNamespacedPodEviction(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedPodEvictionCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8575,7 +8343,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedPodTemplateCall(String namespace, V1PodTemplate body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/podtemplates" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -8616,7 +8384,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedPodTemplateValidateBeforeCall(String namespace, V1PodTemplate body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8630,14 +8398,10 @@ private com.squareup.okhttp.Call createNamespacedPodTemplateValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling createNamespacedPodTemplate(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedPodTemplateCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8717,7 +8481,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedReplicationControllerCall(String namespace, V1ReplicationController body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -8758,7 +8522,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedReplicationControllerValidateBeforeCall(String namespace, V1ReplicationController body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8772,14 +8536,10 @@ private com.squareup.okhttp.Call createNamespacedReplicationControllerValidateBe throw new ApiException("Missing the required parameter 'body' when calling createNamespacedReplicationController(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedReplicationControllerCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8859,7 +8619,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedResourceQuotaCall(String namespace, V1ResourceQuota body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -8900,7 +8660,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedResourceQuotaValidateBeforeCall(String namespace, V1ResourceQuota body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8914,14 +8674,10 @@ private com.squareup.okhttp.Call createNamespacedResourceQuotaValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling createNamespacedResourceQuota(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedResourceQuotaCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9001,7 +8757,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedSecretCall(String namespace, V1Secret body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/secrets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -9042,7 +8798,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedSecretValidateBeforeCall(String namespace, V1Secret body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9056,14 +8812,10 @@ private com.squareup.okhttp.Call createNamespacedSecretValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling createNamespacedSecret(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedSecretCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9143,7 +8895,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedServiceCall(String namespace, V1Service body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -9184,7 +8936,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedServiceValidateBeforeCall(String namespace, V1Service body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9198,14 +8950,10 @@ private com.squareup.okhttp.Call createNamespacedServiceValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling createNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedServiceCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9285,7 +9033,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedServiceAccountCall(String namespace, V1ServiceAccount body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/serviceaccounts" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -9326,7 +9074,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedServiceAccountValidateBeforeCall(String namespace, V1ServiceAccount body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9340,14 +9088,10 @@ private com.squareup.okhttp.Call createNamespacedServiceAccountValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling createNamespacedServiceAccount(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedServiceAccountCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9426,7 +9170,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNodeCall(V1Node body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/nodes"; @@ -9466,7 +9210,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNodeValidateBeforeCall(V1Node body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9475,14 +9219,10 @@ private com.squareup.okhttp.Call createNodeValidateBeforeCall(V1Node body, Strin throw new ApiException("Missing the required parameter 'body' when calling createNode(Async)"); } - + com.squareup.okhttp.Call call = createNodeCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9558,7 +9298,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createPersistentVolumeCall(V1PersistentVolume body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes"; @@ -9598,7 +9338,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createPersistentVolumeValidateBeforeCall(V1PersistentVolume body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9607,14 +9347,10 @@ private com.squareup.okhttp.Call createPersistentVolumeValidateBeforeCall(V1Pers throw new ApiException("Missing the required parameter 'body' when calling createPersistentVolume(Async)"); } - + com.squareup.okhttp.Call call = createPersistentVolumeCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9698,7 +9434,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedConfigMapCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/configmaps" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -9755,7 +9491,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedConfigMapValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9764,14 +9500,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedConfigMapValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedConfigMap(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedConfigMapCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -9879,7 +9611,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedEndpointsCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/endpoints" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -9936,7 +9668,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedEndpointsValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9945,14 +9677,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedEndpointsValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedEndpoints(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedEndpointsCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -10060,7 +9788,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedEventCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/events" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -10117,7 +9845,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedEventValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10126,14 +9854,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedEventValidateBeforeCa throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedEvent(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedEventCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -10241,7 +9965,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedLimitRangeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/limitranges" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -10298,7 +10022,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedLimitRangeValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10307,14 +10031,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedLimitRangeValidateBef throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedLimitRange(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedLimitRangeCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -10422,7 +10142,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedPersistentVolumeClaimCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -10479,7 +10199,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedPersistentVolumeClaimValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10488,14 +10208,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedPersistentVolumeClaim throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedPersistentVolumeClaim(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedPersistentVolumeClaimCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -10603,7 +10319,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedPodCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -10660,7 +10376,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedPodValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10669,14 +10385,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedPodValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedPodCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -10784,7 +10496,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedPodTemplateCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/podtemplates" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -10841,7 +10553,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedPodTemplateValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10850,14 +10562,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedPodTemplateValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedPodTemplate(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedPodTemplateCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -10965,7 +10673,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedReplicationControllerCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -11022,7 +10730,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedReplicationControllerValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -11031,14 +10739,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedReplicationController throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedReplicationController(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedReplicationControllerCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -11146,7 +10850,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedResourceQuotaCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -11203,7 +10907,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedResourceQuotaValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -11212,14 +10916,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedResourceQuotaValidate throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedResourceQuota(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedResourceQuotaCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -11327,7 +11027,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedSecretCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/secrets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -11384,7 +11084,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedSecretValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -11393,14 +11093,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedSecretValidateBeforeC throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedSecret(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedSecretCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -11508,7 +11204,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedServiceAccountCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/serviceaccounts" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -11565,7 +11261,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedServiceAccountValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -11574,14 +11270,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedServiceAccountValidat throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedServiceAccount(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedServiceAccountCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -11688,7 +11380,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNodeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes"; @@ -11744,18 +11436,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNodeValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionNodeCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -11859,7 +11547,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionPersistentVolumeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes"; @@ -11915,18 +11603,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionPersistentVolumeValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionPersistentVolumeCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -12027,7 +11711,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespaceCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -12074,7 +11758,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespaceValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -12088,14 +11772,10 @@ private com.squareup.okhttp.Call deleteNamespaceValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling deleteNamespace(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespaceCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -12188,7 +11868,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedConfigMapCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/configmaps/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -12236,7 +11916,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedConfigMapValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -12255,14 +11935,10 @@ private com.squareup.okhttp.Call deleteNamespacedConfigMapValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedConfigMap(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedConfigMapCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -12358,7 +12034,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedEndpointsCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/endpoints/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -12405,178 +12081,174 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); - } - - @SuppressWarnings("rawtypes") - private com.squareup.okhttp.Call deleteNamespacedEndpointsValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - - // verify the required parameter 'name' is set - if (name == null) { - throw new ApiException("Missing the required parameter 'name' when calling deleteNamespacedEndpoints(Async)"); - } - - // verify the required parameter 'namespace' is set - if (namespace == null) { - throw new ApiException("Missing the required parameter 'namespace' when calling deleteNamespacedEndpoints(Async)"); - } - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedEndpoints(Async)"); - } - - - com.squareup.okhttp.Call call = deleteNamespacedEndpointsCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); - return call; - - - - - } - /** - * - * delete Endpoints - * @param name name of the Endpoints (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param body (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) - * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) - * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) - * @return V1Status - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public V1Status deleteNamespacedEndpoints(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy) throws ApiException { - ApiResponse resp = deleteNamespacedEndpointsWithHttpInfo(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy); - return resp.getData(); - } - - /** - * - * delete Endpoints - * @param name name of the Endpoints (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param body (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) - * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) - * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) - * @return ApiResponse<V1Status> - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public ApiResponse deleteNamespacedEndpointsWithHttpInfo(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy) throws ApiException { - com.squareup.okhttp.Call call = deleteNamespacedEndpointsValidateBeforeCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, null, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return apiClient.execute(call, localVarReturnType); - } - - /** - * (asynchronously) - * delete Endpoints - * @param name name of the Endpoints (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param body (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) - * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) - * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) - * @param callback The callback to be executed when the API call finishes - * @return The request call - * @throws ApiException If fail to process the API call, e.g. serializing the request body object - */ - public com.squareup.okhttp.Call deleteNamespacedEndpointsAsync(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ApiCallback callback) throws ApiException { - - ProgressResponseBody.ProgressListener progressListener = null; - ProgressRequestBody.ProgressRequestListener progressRequestListener = null; - - if (callback != null) { - progressListener = new ProgressResponseBody.ProgressListener() { - @Override - public void update(long bytesRead, long contentLength, boolean done) { - callback.onDownloadProgress(bytesRead, contentLength, done); - } - }; - - progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { - @Override - public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { - callback.onUploadProgress(bytesWritten, contentLength, done); - } - }; - } - - com.squareup.okhttp.Call call = deleteNamespacedEndpointsValidateBeforeCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); - Type localVarReturnType = new TypeToken(){}.getType(); - apiClient.executeAsync(call, localVarReturnType, callback); - return call; - } - /** - * Build call for deleteNamespacedEvent - * @param name name of the Event (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param body (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) - * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) - * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) - * @param progressListener Progress listener - * @param progressRequestListener Progress request listener - * @return Call to execute - * @throws ApiException If fail to serialize the request body object - */ - public com.squareup.okhttp.Call deleteNamespacedEventCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - Object localVarPostBody = body; - - // create path and map variables - String localVarPath = "/api/v1/namespaces/{namespace}/events/{name}" - .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) - .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); - - List localVarQueryParams = new ArrayList(); - List localVarCollectionQueryParams = new ArrayList(); - if (pretty != null) - localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); - if (gracePeriodSeconds != null) - localVarQueryParams.addAll(apiClient.parameterToPair("gracePeriodSeconds", gracePeriodSeconds)); - if (orphanDependents != null) - localVarQueryParams.addAll(apiClient.parameterToPair("orphanDependents", orphanDependents)); - if (propagationPolicy != null) - localVarQueryParams.addAll(apiClient.parameterToPair("propagationPolicy", propagationPolicy)); - - Map localVarHeaderParams = new HashMap(); - - Map localVarFormParams = new HashMap(); - - final String[] localVarAccepts = { - "application/json", "application/yaml", "application/vnd.kubernetes.protobuf" - }; - final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); - - final String[] localVarContentTypes = { - "*/*" - }; - final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - localVarHeaderParams.put("Content-Type", localVarContentType); - - if(progressListener != null) { - apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { - @Override - public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { - com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); - return originalResponse.newBuilder() - .body(new ProgressResponseBody(originalResponse.body(), progressListener)) - .build(); - } - }); - } - - String[] localVarAuthNames = new String[] { "BearerToken" }; - return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); - } - + @SuppressWarnings("rawtypes") + private com.squareup.okhttp.Call deleteNamespacedEndpointsValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + + // verify the required parameter 'name' is set + if (name == null) { + throw new ApiException("Missing the required parameter 'name' when calling deleteNamespacedEndpoints(Async)"); + } + + // verify the required parameter 'namespace' is set + if (namespace == null) { + throw new ApiException("Missing the required parameter 'namespace' when calling deleteNamespacedEndpoints(Async)"); + } + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedEndpoints(Async)"); + } + + + com.squareup.okhttp.Call call = deleteNamespacedEndpointsCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); + return call; + + } + + /** + * + * delete Endpoints + * @param name name of the Endpoints (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param body (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) + * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) + * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) + * @return V1Status + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public V1Status deleteNamespacedEndpoints(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy) throws ApiException { + ApiResponse resp = deleteNamespacedEndpointsWithHttpInfo(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy); + return resp.getData(); + } + + /** + * + * delete Endpoints + * @param name name of the Endpoints (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param body (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) + * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) + * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) + * @return ApiResponse<V1Status> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public ApiResponse deleteNamespacedEndpointsWithHttpInfo(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy) throws ApiException { + com.squareup.okhttp.Call call = deleteNamespacedEndpointsValidateBeforeCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, null, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return apiClient.execute(call, localVarReturnType); + } + + /** + * (asynchronously) + * delete Endpoints + * @param name name of the Endpoints (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param body (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) + * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) + * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) + * @param callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + */ + public com.squareup.okhttp.Call deleteNamespacedEndpointsAsync(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ApiCallback callback) throws ApiException { + + ProgressResponseBody.ProgressListener progressListener = null; + ProgressRequestBody.ProgressRequestListener progressRequestListener = null; + + if (callback != null) { + progressListener = new ProgressResponseBody.ProgressListener() { + @Override + public void update(long bytesRead, long contentLength, boolean done) { + callback.onDownloadProgress(bytesRead, contentLength, done); + } + }; + + progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { + @Override + public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { + callback.onUploadProgress(bytesWritten, contentLength, done); + } + }; + } + + com.squareup.okhttp.Call call = deleteNamespacedEndpointsValidateBeforeCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); + Type localVarReturnType = new TypeToken(){}.getType(); + apiClient.executeAsync(call, localVarReturnType, callback); + return call; + } + /** + * Build call for deleteNamespacedEvent + * @param name name of the Event (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param body (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. (optional) + * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. (optional) + * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. (optional) + * @param progressListener Progress listener + * @param progressRequestListener Progress request listener + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + */ + public com.squareup.okhttp.Call deleteNamespacedEventCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + Object localVarPostBody = body; + + // create path and map variables + String localVarPath = "/api/v1/namespaces/{namespace}/events/{name}" + .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) + .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + if (pretty != null) + localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); + if (gracePeriodSeconds != null) + localVarQueryParams.addAll(apiClient.parameterToPair("gracePeriodSeconds", gracePeriodSeconds)); + if (orphanDependents != null) + localVarQueryParams.addAll(apiClient.parameterToPair("orphanDependents", orphanDependents)); + if (propagationPolicy != null) + localVarQueryParams.addAll(apiClient.parameterToPair("propagationPolicy", propagationPolicy)); + + Map localVarHeaderParams = new HashMap(); + + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json", "application/yaml", "application/vnd.kubernetes.protobuf" + }; + final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); + + final String[] localVarContentTypes = { + "*/*" + }; + final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + localVarHeaderParams.put("Content-Type", localVarContentType); + + if(progressListener != null) { + apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { + @Override + public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { + com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); + return originalResponse.newBuilder() + .body(new ProgressResponseBody(originalResponse.body(), progressListener)) + .build(); + } + }); + } + + String[] localVarAuthNames = new String[] { "BearerToken" }; + return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); + } + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedEventValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -12595,14 +12267,10 @@ private com.squareup.okhttp.Call deleteNamespacedEventValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedEvent(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedEventCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -12698,7 +12366,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedLimitRangeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/limitranges/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -12746,7 +12414,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedLimitRangeValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -12765,14 +12433,10 @@ private com.squareup.okhttp.Call deleteNamespacedLimitRangeValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedLimitRange(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedLimitRangeCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -12868,7 +12532,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedPersistentVolumeClaimCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -12916,7 +12580,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedPersistentVolumeClaimValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -12935,14 +12599,10 @@ private com.squareup.okhttp.Call deleteNamespacedPersistentVolumeClaimValidateBe throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedPersistentVolumeClaim(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedPersistentVolumeClaimCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -13038,7 +12698,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedPodCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -13086,7 +12746,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedPodValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -13105,14 +12765,10 @@ private com.squareup.okhttp.Call deleteNamespacedPodValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedPodCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -13208,7 +12864,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedPodTemplateCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/podtemplates/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -13256,7 +12912,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedPodTemplateValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -13275,14 +12931,10 @@ private com.squareup.okhttp.Call deleteNamespacedPodTemplateValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedPodTemplate(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedPodTemplateCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -13378,7 +13030,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedReplicationControllerCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -13426,7 +13078,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedReplicationControllerValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -13445,14 +13097,10 @@ private com.squareup.okhttp.Call deleteNamespacedReplicationControllerValidateBe throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedReplicationController(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedReplicationControllerCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -13548,7 +13196,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedResourceQuotaCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -13596,7 +13244,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedResourceQuotaValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -13615,14 +13263,10 @@ private com.squareup.okhttp.Call deleteNamespacedResourceQuotaValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedResourceQuota(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedResourceQuotaCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -13718,7 +13362,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedSecretCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/secrets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -13766,7 +13410,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedSecretValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -13785,14 +13429,10 @@ private com.squareup.okhttp.Call deleteNamespacedSecretValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedSecret(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedSecretCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -13884,7 +13524,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedServiceCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -13926,7 +13566,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedServiceValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -13940,14 +13580,10 @@ private com.squareup.okhttp.Call deleteNamespacedServiceValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling deleteNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedServiceCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -14031,7 +13667,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedServiceAccountCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/serviceaccounts/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -14079,7 +13715,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedServiceAccountValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -14098,14 +13734,10 @@ private com.squareup.okhttp.Call deleteNamespacedServiceAccountValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedServiceAccount(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedServiceAccountCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -14200,7 +13832,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNodeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -14247,7 +13879,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNodeValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -14261,14 +13893,10 @@ private com.squareup.okhttp.Call deleteNodeValidateBeforeCall(String name, V1Del throw new ApiException("Missing the required parameter 'body' when calling deleteNode(Async)"); } - + com.squareup.okhttp.Call call = deleteNodeCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -14360,7 +13988,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deletePersistentVolumeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -14407,7 +14035,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deletePersistentVolumeValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -14421,14 +14049,10 @@ private com.squareup.okhttp.Call deletePersistentVolumeValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling deletePersistentVolume(Async)"); } - + com.squareup.okhttp.Call call = deletePersistentVolumeCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -14514,7 +14138,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/"; @@ -14552,18 +14176,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -14640,7 +14260,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listComponentStatusCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/componentstatuses"; @@ -14696,18 +14316,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listComponentStatusValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listComponentStatusCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -14811,7 +14427,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listConfigMapForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/configmaps"; @@ -14867,18 +14483,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listConfigMapForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listConfigMapForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -14982,7 +14594,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listEndpointsForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/endpoints"; @@ -15038,18 +14650,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listEndpointsForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listEndpointsForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -15153,7 +14761,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listEventForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/events"; @@ -15209,18 +14817,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listEventForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listEventForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -15324,7 +14928,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listLimitRangeForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/limitranges"; @@ -15380,18 +14984,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listLimitRangeForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listLimitRangeForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -15495,7 +15095,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespaceCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces"; @@ -15551,18 +15151,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespaceValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listNamespaceCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -15667,7 +15263,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedConfigMapCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/configmaps" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -15724,188 +15320,184 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - - @SuppressWarnings("rawtypes") - private com.squareup.okhttp.Call listNamespacedConfigMapValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - - // verify the required parameter 'namespace' is set - if (namespace == null) { - throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedConfigMap(Async)"); - } - - - com.squareup.okhttp.Call call = listNamespacedConfigMapCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); - return call; - - - - - - } - - /** - * - * list or watch objects of kind ConfigMap - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @return V1ConfigMapList - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public V1ConfigMapList listNamespacedConfigMap(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { - ApiResponse resp = listNamespacedConfigMapWithHttpInfo(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch); - return resp.getData(); - } - - /** - * - * list or watch objects of kind ConfigMap - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @return ApiResponse<V1ConfigMapList> - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public ApiResponse listNamespacedConfigMapWithHttpInfo(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { - com.squareup.okhttp.Call call = listNamespacedConfigMapValidateBeforeCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, null, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return apiClient.execute(call, localVarReturnType); - } - - /** - * (asynchronously) - * list or watch objects of kind ConfigMap - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @param callback The callback to be executed when the API call finishes - * @return The request call - * @throws ApiException If fail to process the API call, e.g. serializing the request body object - */ - public com.squareup.okhttp.Call listNamespacedConfigMapAsync(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ApiCallback callback) throws ApiException { - - ProgressResponseBody.ProgressListener progressListener = null; - ProgressRequestBody.ProgressRequestListener progressRequestListener = null; - - if (callback != null) { - progressListener = new ProgressResponseBody.ProgressListener() { - @Override - public void update(long bytesRead, long contentLength, boolean done) { - callback.onDownloadProgress(bytesRead, contentLength, done); - } - }; - - progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { - @Override - public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { - callback.onUploadProgress(bytesWritten, contentLength, done); - } - }; - } - com.squareup.okhttp.Call call = listNamespacedConfigMapValidateBeforeCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); - Type localVarReturnType = new TypeToken(){}.getType(); - apiClient.executeAsync(call, localVarReturnType, callback); - return call; - } - /** - * Build call for listNamespacedEndpoints - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @param progressListener Progress listener - * @param progressRequestListener Progress request listener - * @return Call to execute - * @throws ApiException If fail to serialize the request body object - */ - public com.squareup.okhttp.Call listNamespacedEndpointsCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - Object localVarPostBody = null; - - // create path and map variables - String localVarPath = "/api/v1/namespaces/{namespace}/endpoints" - .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); - - List localVarQueryParams = new ArrayList(); - List localVarCollectionQueryParams = new ArrayList(); - if (pretty != null) - localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); - if (_continue != null) - localVarQueryParams.addAll(apiClient.parameterToPair("continue", _continue)); - if (fieldSelector != null) - localVarQueryParams.addAll(apiClient.parameterToPair("fieldSelector", fieldSelector)); - if (includeUninitialized != null) - localVarQueryParams.addAll(apiClient.parameterToPair("includeUninitialized", includeUninitialized)); - if (labelSelector != null) - localVarQueryParams.addAll(apiClient.parameterToPair("labelSelector", labelSelector)); - if (limit != null) - localVarQueryParams.addAll(apiClient.parameterToPair("limit", limit)); - if (resourceVersion != null) - localVarQueryParams.addAll(apiClient.parameterToPair("resourceVersion", resourceVersion)); - if (timeoutSeconds != null) - localVarQueryParams.addAll(apiClient.parameterToPair("timeoutSeconds", timeoutSeconds)); - if (watch != null) - localVarQueryParams.addAll(apiClient.parameterToPair("watch", watch)); - - Map localVarHeaderParams = new HashMap(); - - Map localVarFormParams = new HashMap(); - - final String[] localVarAccepts = { - "application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch" - }; - final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); - - final String[] localVarContentTypes = { - "*/*" - }; - final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - localVarHeaderParams.put("Content-Type", localVarContentType); - - if(progressListener != null) { - apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { - @Override - public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { - com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); - return originalResponse.newBuilder() - .body(new ProgressResponseBody(originalResponse.body(), progressListener)) - .build(); - } - }); - } - - String[] localVarAuthNames = new String[] { "BearerToken" }; - return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); - } - + @SuppressWarnings("rawtypes") + private com.squareup.okhttp.Call listNamespacedConfigMapValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + + // verify the required parameter 'namespace' is set + if (namespace == null) { + throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedConfigMap(Async)"); + } + + + com.squareup.okhttp.Call call = listNamespacedConfigMapCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); + return call; + + } + + /** + * + * list or watch objects of kind ConfigMap + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @return V1ConfigMapList + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public V1ConfigMapList listNamespacedConfigMap(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { + ApiResponse resp = listNamespacedConfigMapWithHttpInfo(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch); + return resp.getData(); + } + + /** + * + * list or watch objects of kind ConfigMap + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @return ApiResponse<V1ConfigMapList> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public ApiResponse listNamespacedConfigMapWithHttpInfo(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { + com.squareup.okhttp.Call call = listNamespacedConfigMapValidateBeforeCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, null, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return apiClient.execute(call, localVarReturnType); + } + + /** + * (asynchronously) + * list or watch objects of kind ConfigMap + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @param callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + */ + public com.squareup.okhttp.Call listNamespacedConfigMapAsync(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ApiCallback callback) throws ApiException { + + ProgressResponseBody.ProgressListener progressListener = null; + ProgressRequestBody.ProgressRequestListener progressRequestListener = null; + + if (callback != null) { + progressListener = new ProgressResponseBody.ProgressListener() { + @Override + public void update(long bytesRead, long contentLength, boolean done) { + callback.onDownloadProgress(bytesRead, contentLength, done); + } + }; + + progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { + @Override + public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { + callback.onUploadProgress(bytesWritten, contentLength, done); + } + }; + } + + com.squareup.okhttp.Call call = listNamespacedConfigMapValidateBeforeCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); + Type localVarReturnType = new TypeToken(){}.getType(); + apiClient.executeAsync(call, localVarReturnType, callback); + return call; + } + /** + * Build call for listNamespacedEndpoints + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @param progressListener Progress listener + * @param progressRequestListener Progress request listener + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + */ + public com.squareup.okhttp.Call listNamespacedEndpointsCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + Object localVarPostBody = null; + + // create path and map variables + String localVarPath = "/api/v1/namespaces/{namespace}/endpoints" + .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + if (pretty != null) + localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); + if (_continue != null) + localVarQueryParams.addAll(apiClient.parameterToPair("continue", _continue)); + if (fieldSelector != null) + localVarQueryParams.addAll(apiClient.parameterToPair("fieldSelector", fieldSelector)); + if (includeUninitialized != null) + localVarQueryParams.addAll(apiClient.parameterToPair("includeUninitialized", includeUninitialized)); + if (labelSelector != null) + localVarQueryParams.addAll(apiClient.parameterToPair("labelSelector", labelSelector)); + if (limit != null) + localVarQueryParams.addAll(apiClient.parameterToPair("limit", limit)); + if (resourceVersion != null) + localVarQueryParams.addAll(apiClient.parameterToPair("resourceVersion", resourceVersion)); + if (timeoutSeconds != null) + localVarQueryParams.addAll(apiClient.parameterToPair("timeoutSeconds", timeoutSeconds)); + if (watch != null) + localVarQueryParams.addAll(apiClient.parameterToPair("watch", watch)); + + Map localVarHeaderParams = new HashMap(); + + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch" + }; + final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); + + final String[] localVarContentTypes = { + "*/*" + }; + final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + localVarHeaderParams.put("Content-Type", localVarContentType); + + if(progressListener != null) { + apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { + @Override + public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { + com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); + return originalResponse.newBuilder() + .body(new ProgressResponseBody(originalResponse.body(), progressListener)) + .build(); + } + }); + } + + String[] localVarAuthNames = new String[] { "BearerToken" }; + return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); + } + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedEndpointsValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -15914,14 +15506,10 @@ private com.squareup.okhttp.Call listNamespacedEndpointsValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedEndpoints(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedEndpointsCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -16029,7 +15617,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedEventCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/events" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -16086,7 +15674,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedEventValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -16095,14 +15683,10 @@ private com.squareup.okhttp.Call listNamespacedEventValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedEvent(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedEventCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -16210,7 +15794,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedLimitRangeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/limitranges" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -16267,7 +15851,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedLimitRangeValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -16276,14 +15860,10 @@ private com.squareup.okhttp.Call listNamespacedLimitRangeValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedLimitRange(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedLimitRangeCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -16391,7 +15971,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedPersistentVolumeClaimCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -16448,7 +16028,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedPersistentVolumeClaimValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -16457,14 +16037,10 @@ private com.squareup.okhttp.Call listNamespacedPersistentVolumeClaimValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedPersistentVolumeClaim(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedPersistentVolumeClaimCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -16572,7 +16148,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedPodCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -16629,7 +16205,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedPodValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -16638,14 +16214,10 @@ private com.squareup.okhttp.Call listNamespacedPodValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedPodCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -16753,7 +16325,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedPodTemplateCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/podtemplates" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -16810,7 +16382,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedPodTemplateValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -16819,14 +16391,10 @@ private com.squareup.okhttp.Call listNamespacedPodTemplateValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedPodTemplate(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedPodTemplateCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -16934,7 +16502,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedReplicationControllerCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -16991,7 +16559,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedReplicationControllerValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -17000,14 +16568,10 @@ private com.squareup.okhttp.Call listNamespacedReplicationControllerValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedReplicationController(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedReplicationControllerCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -17115,7 +16679,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedResourceQuotaCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -17172,7 +16736,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedResourceQuotaValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -17181,14 +16745,10 @@ private com.squareup.okhttp.Call listNamespacedResourceQuotaValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedResourceQuota(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedResourceQuotaCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -17296,7 +16856,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedSecretCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/secrets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -17353,7 +16913,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedSecretValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -17362,14 +16922,10 @@ private com.squareup.okhttp.Call listNamespacedSecretValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedSecret(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedSecretCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -17477,7 +17033,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedServiceCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -17534,7 +17090,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedServiceValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -17543,14 +17099,10 @@ private com.squareup.okhttp.Call listNamespacedServiceValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedServiceCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -17658,7 +17210,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedServiceAccountCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/serviceaccounts" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -17715,7 +17267,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedServiceAccountValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -17724,14 +17276,10 @@ private com.squareup.okhttp.Call listNamespacedServiceAccountValidateBeforeCall( throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedServiceAccount(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedServiceAccountCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -17838,7 +17386,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNodeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes"; @@ -17894,18 +17442,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNodeValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listNodeCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -18009,7 +17553,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPersistentVolumeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes"; @@ -18065,18 +17609,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPersistentVolumeValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPersistentVolumeCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -18180,7 +17720,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPersistentVolumeClaimForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumeclaims"; @@ -18236,18 +17776,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPersistentVolumeClaimForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPersistentVolumeClaimForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -18351,7 +17887,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPodForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/pods"; @@ -18407,18 +17943,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPodForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPodForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -18522,7 +18054,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPodTemplateForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/podtemplates"; @@ -18578,18 +18110,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPodTemplateForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPodTemplateForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -18693,7 +18221,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listReplicationControllerForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/replicationcontrollers"; @@ -18749,18 +18277,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listReplicationControllerForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listReplicationControllerForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -18864,7 +18388,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listResourceQuotaForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/resourcequotas"; @@ -18920,18 +18444,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listResourceQuotaForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listResourceQuotaForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -19035,7 +18555,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listSecretForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/secrets"; @@ -19091,18 +18611,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listSecretForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listSecretForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -19206,7 +18722,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listServiceAccountForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/serviceaccounts"; @@ -19262,189 +18778,181 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - - @SuppressWarnings("rawtypes") - private com.squareup.okhttp.Call listServiceAccountForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - - - com.squareup.okhttp.Call call = listServiceAccountForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); - return call; - - - - - - } - - /** - * - * list or watch objects of kind ServiceAccount - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @return V1ServiceAccountList - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public V1ServiceAccountList listServiceAccountForAllNamespaces(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { - ApiResponse resp = listServiceAccountForAllNamespacesWithHttpInfo(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch); - return resp.getData(); - } - - /** - * - * list or watch objects of kind ServiceAccount - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @return ApiResponse<V1ServiceAccountList> - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public ApiResponse listServiceAccountForAllNamespacesWithHttpInfo(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { - com.squareup.okhttp.Call call = listServiceAccountForAllNamespacesValidateBeforeCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, null, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return apiClient.execute(call, localVarReturnType); - } - - /** - * (asynchronously) - * list or watch objects of kind ServiceAccount - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @param callback The callback to be executed when the API call finishes - * @return The request call - * @throws ApiException If fail to process the API call, e.g. serializing the request body object - */ - public com.squareup.okhttp.Call listServiceAccountForAllNamespacesAsync(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ApiCallback callback) throws ApiException { - - ProgressResponseBody.ProgressListener progressListener = null; - ProgressRequestBody.ProgressRequestListener progressRequestListener = null; - - if (callback != null) { - progressListener = new ProgressResponseBody.ProgressListener() { - @Override - public void update(long bytesRead, long contentLength, boolean done) { - callback.onDownloadProgress(bytesRead, contentLength, done); - } - }; - - progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { - @Override - public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { - callback.onUploadProgress(bytesWritten, contentLength, done); - } - }; - } - - com.squareup.okhttp.Call call = listServiceAccountForAllNamespacesValidateBeforeCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); - Type localVarReturnType = new TypeToken(){}.getType(); - apiClient.executeAsync(call, localVarReturnType, callback); - return call; - } - /** - * Build call for listServiceForAllNamespaces - * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) - * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) - * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) - * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) - * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) - * @param timeoutSeconds Timeout for the list/watch call. (optional) - * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) - * @param progressListener Progress listener - * @param progressRequestListener Progress request listener - * @return Call to execute - * @throws ApiException If fail to serialize the request body object - */ - public com.squareup.okhttp.Call listServiceForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - Object localVarPostBody = null; - - // create path and map variables - String localVarPath = "/api/v1/services"; - - List localVarQueryParams = new ArrayList(); - List localVarCollectionQueryParams = new ArrayList(); - if (_continue != null) - localVarQueryParams.addAll(apiClient.parameterToPair("continue", _continue)); - if (fieldSelector != null) - localVarQueryParams.addAll(apiClient.parameterToPair("fieldSelector", fieldSelector)); - if (includeUninitialized != null) - localVarQueryParams.addAll(apiClient.parameterToPair("includeUninitialized", includeUninitialized)); - if (labelSelector != null) - localVarQueryParams.addAll(apiClient.parameterToPair("labelSelector", labelSelector)); - if (limit != null) - localVarQueryParams.addAll(apiClient.parameterToPair("limit", limit)); - if (pretty != null) - localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); - if (resourceVersion != null) - localVarQueryParams.addAll(apiClient.parameterToPair("resourceVersion", resourceVersion)); - if (timeoutSeconds != null) - localVarQueryParams.addAll(apiClient.parameterToPair("timeoutSeconds", timeoutSeconds)); - if (watch != null) - localVarQueryParams.addAll(apiClient.parameterToPair("watch", watch)); - Map localVarHeaderParams = new HashMap(); - - Map localVarFormParams = new HashMap(); - - final String[] localVarAccepts = { - "application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch" - }; - final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); - - final String[] localVarContentTypes = { - "*/*" - }; - final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - localVarHeaderParams.put("Content-Type", localVarContentType); - - if(progressListener != null) { - apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { - @Override - public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { - com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); - return originalResponse.newBuilder() - .body(new ProgressResponseBody(originalResponse.body(), progressListener)) - .build(); - } - }); - } - - String[] localVarAuthNames = new String[] { "BearerToken" }; - return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); - } - + @SuppressWarnings("rawtypes") + private com.squareup.okhttp.Call listServiceAccountForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + + + com.squareup.okhttp.Call call = listServiceAccountForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); + return call; + + } + + /** + * + * list or watch objects of kind ServiceAccount + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @return V1ServiceAccountList + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public V1ServiceAccountList listServiceAccountForAllNamespaces(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { + ApiResponse resp = listServiceAccountForAllNamespacesWithHttpInfo(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch); + return resp.getData(); + } + + /** + * + * list or watch objects of kind ServiceAccount + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @return ApiResponse<V1ServiceAccountList> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public ApiResponse listServiceAccountForAllNamespacesWithHttpInfo(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch) throws ApiException { + com.squareup.okhttp.Call call = listServiceAccountForAllNamespacesValidateBeforeCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, null, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return apiClient.execute(call, localVarReturnType); + } + + /** + * (asynchronously) + * list or watch objects of kind ServiceAccount + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @param callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + */ + public com.squareup.okhttp.Call listServiceAccountForAllNamespacesAsync(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ApiCallback callback) throws ApiException { + + ProgressResponseBody.ProgressListener progressListener = null; + ProgressRequestBody.ProgressRequestListener progressRequestListener = null; + + if (callback != null) { + progressListener = new ProgressResponseBody.ProgressListener() { + @Override + public void update(long bytesRead, long contentLength, boolean done) { + callback.onDownloadProgress(bytesRead, contentLength, done); + } + }; + + progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { + @Override + public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { + callback.onUploadProgress(bytesWritten, contentLength, done); + } + }; + } + + com.squareup.okhttp.Call call = listServiceAccountForAllNamespacesValidateBeforeCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); + Type localVarReturnType = new TypeToken(){}.getType(); + apiClient.executeAsync(call, localVarReturnType, callback); + return call; + } + /** + * Build call for listServiceForAllNamespaces + * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. (optional) + * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional) + * @param includeUninitialized If true, partially initialized resources are included in the response. (optional) + * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional) + * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned. (optional) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. (optional) + * @param timeoutSeconds Timeout for the list/watch call. (optional) + * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional) + * @param progressListener Progress listener + * @param progressRequestListener Progress request listener + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + */ + public com.squareup.okhttp.Call listServiceForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + Object localVarPostBody = null; + + // create path and map variables + String localVarPath = "/api/v1/services"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + if (_continue != null) + localVarQueryParams.addAll(apiClient.parameterToPair("continue", _continue)); + if (fieldSelector != null) + localVarQueryParams.addAll(apiClient.parameterToPair("fieldSelector", fieldSelector)); + if (includeUninitialized != null) + localVarQueryParams.addAll(apiClient.parameterToPair("includeUninitialized", includeUninitialized)); + if (labelSelector != null) + localVarQueryParams.addAll(apiClient.parameterToPair("labelSelector", labelSelector)); + if (limit != null) + localVarQueryParams.addAll(apiClient.parameterToPair("limit", limit)); + if (pretty != null) + localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); + if (resourceVersion != null) + localVarQueryParams.addAll(apiClient.parameterToPair("resourceVersion", resourceVersion)); + if (timeoutSeconds != null) + localVarQueryParams.addAll(apiClient.parameterToPair("timeoutSeconds", timeoutSeconds)); + if (watch != null) + localVarQueryParams.addAll(apiClient.parameterToPair("watch", watch)); + + Map localVarHeaderParams = new HashMap(); + + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch" + }; + final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); + + final String[] localVarContentTypes = { + "*/*" + }; + final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + localVarHeaderParams.put("Content-Type", localVarContentType); + + if(progressListener != null) { + apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { + @Override + public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { + com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); + return originalResponse.newBuilder() + .body(new ProgressResponseBody(originalResponse.body(), progressListener)) + .build(); + } + }); + } + + String[] localVarAuthNames = new String[] { "BearerToken" }; + return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); + } + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listServiceForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listServiceForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -19542,7 +19050,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespaceCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -19583,7 +19091,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespaceValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -19597,14 +19105,10 @@ private com.squareup.okhttp.Call patchNamespaceValidateBeforeCall(String name, O throw new ApiException("Missing the required parameter 'body' when calling patchNamespace(Async)"); } - + com.squareup.okhttp.Call call = patchNamespaceCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -19684,7 +19188,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespaceStatusCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -19725,7 +19229,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespaceStatusValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -19739,14 +19243,10 @@ private com.squareup.okhttp.Call patchNamespaceStatusValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling patchNamespaceStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespaceStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -19827,7 +19327,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedConfigMapCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/configmaps/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -19869,7 +19369,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedConfigMapValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -19888,14 +19388,10 @@ private com.squareup.okhttp.Call patchNamespacedConfigMapValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedConfigMap(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedConfigMapCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -19979,7 +19475,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedEndpointsCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/endpoints/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -20021,7 +19517,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedEndpointsValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -20040,14 +19536,10 @@ private com.squareup.okhttp.Call patchNamespacedEndpointsValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedEndpoints(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedEndpointsCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -20131,7 +19623,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedEventCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/events/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -20173,7 +19665,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedEventValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -20192,14 +19684,10 @@ private com.squareup.okhttp.Call patchNamespacedEventValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedEvent(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedEventCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -20283,7 +19771,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedLimitRangeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/limitranges/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -20325,7 +19813,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedLimitRangeValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -20344,14 +19832,10 @@ private com.squareup.okhttp.Call patchNamespacedLimitRangeValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedLimitRange(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedLimitRangeCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -20435,7 +19919,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPersistentVolumeClaimCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -20477,7 +19961,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPersistentVolumeClaimValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -20496,14 +19980,10 @@ private com.squareup.okhttp.Call patchNamespacedPersistentVolumeClaimValidateBef throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPersistentVolumeClaim(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPersistentVolumeClaimCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -20587,7 +20067,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPersistentVolumeClaimStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -20629,7 +20109,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPersistentVolumeClaimStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -20648,14 +20128,10 @@ private com.squareup.okhttp.Call patchNamespacedPersistentVolumeClaimStatusValid throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPersistentVolumeClaimStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPersistentVolumeClaimStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -20739,7 +20215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPodCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -20781,7 +20257,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPodValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -20800,14 +20276,10 @@ private com.squareup.okhttp.Call patchNamespacedPodValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPodCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -20891,7 +20363,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPodStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -20933,7 +20405,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPodStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -20952,14 +20424,10 @@ private com.squareup.okhttp.Call patchNamespacedPodStatusValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPodStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPodStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -21043,7 +20511,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPodTemplateCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/podtemplates/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -21085,7 +20553,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPodTemplateValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -21104,14 +20572,10 @@ private com.squareup.okhttp.Call patchNamespacedPodTemplateValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPodTemplate(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPodTemplateCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -21195,7 +20659,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicationControllerCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -21237,7 +20701,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicationControllerValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -21256,14 +20720,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicationControllerValidateBef throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicationController(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicationControllerCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -21347,7 +20807,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicationControllerScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -21389,7 +20849,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicationControllerScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -21408,14 +20868,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicationControllerScaleValida throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicationControllerScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicationControllerScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -21499,7 +20955,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicationControllerStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -21541,7 +20997,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicationControllerStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -21560,14 +21016,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicationControllerStatusValid throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicationControllerStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicationControllerStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -21651,7 +21103,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedResourceQuotaCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -21693,7 +21145,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedResourceQuotaValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -21712,14 +21164,10 @@ private com.squareup.okhttp.Call patchNamespacedResourceQuotaValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedResourceQuota(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedResourceQuotaCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -21803,7 +21251,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedResourceQuotaStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -21845,7 +21293,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedResourceQuotaStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -21864,14 +21312,10 @@ private com.squareup.okhttp.Call patchNamespacedResourceQuotaStatusValidateBefor throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedResourceQuotaStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedResourceQuotaStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -21955,7 +21399,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedSecretCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/secrets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -21997,7 +21441,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedSecretValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -22016,14 +21460,10 @@ private com.squareup.okhttp.Call patchNamespacedSecretValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedSecret(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedSecretCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -22107,7 +21547,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedServiceCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -22149,7 +21589,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedServiceValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -22168,14 +21608,10 @@ private com.squareup.okhttp.Call patchNamespacedServiceValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedServiceCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -22259,7 +21695,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedServiceAccountCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/serviceaccounts/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -22301,7 +21737,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedServiceAccountValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -22320,14 +21756,10 @@ private com.squareup.okhttp.Call patchNamespacedServiceAccountValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedServiceAccount(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedServiceAccountCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -22411,7 +21843,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedServiceStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -22453,7 +21885,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedServiceStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -22472,14 +21904,10 @@ private com.squareup.okhttp.Call patchNamespacedServiceStatusValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedServiceStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedServiceStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -22562,7 +21990,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNodeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -22603,7 +22031,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNodeValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -22617,14 +22045,10 @@ private com.squareup.okhttp.Call patchNodeValidateBeforeCall(String name, Object throw new ApiException("Missing the required parameter 'body' when calling patchNode(Async)"); } - + com.squareup.okhttp.Call call = patchNodeCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -22704,7 +22128,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNodeStatusCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -22745,7 +22169,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNodeStatusValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -22759,14 +22183,10 @@ private com.squareup.okhttp.Call patchNodeStatusValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling patchNodeStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNodeStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -22846,7 +22266,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchPersistentVolumeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -22887,7 +22307,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchPersistentVolumeValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -22901,14 +22321,10 @@ private com.squareup.okhttp.Call patchPersistentVolumeValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling patchPersistentVolume(Async)"); } - + com.squareup.okhttp.Call call = patchPersistentVolumeCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -22988,7 +22404,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchPersistentVolumeStatusCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -23029,7 +22445,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchPersistentVolumeStatusValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -23043,14 +22459,10 @@ private com.squareup.okhttp.Call patchPersistentVolumeStatusValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling patchPersistentVolumeStatus(Async)"); } - + com.squareup.okhttp.Call call = patchPersistentVolumeStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -23129,7 +22541,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyDELETENamespacedPodCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -23169,7 +22581,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyDELETENamespacedPodValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -23183,14 +22595,10 @@ private com.squareup.okhttp.Call proxyDELETENamespacedPodValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling proxyDELETENamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = proxyDELETENamespacedPodCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -23267,7 +22675,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyDELETENamespacedPodWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -23308,7 +22716,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyDELETENamespacedPodWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -23327,14 +22735,10 @@ private com.squareup.okhttp.Call proxyDELETENamespacedPodWithPathValidateBeforeC throw new ApiException("Missing the required parameter 'path' when calling proxyDELETENamespacedPodWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyDELETENamespacedPodWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -23413,7 +22817,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyDELETENamespacedServiceCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -23453,7 +22857,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyDELETENamespacedServiceValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -23467,14 +22871,10 @@ private com.squareup.okhttp.Call proxyDELETENamespacedServiceValidateBeforeCall( throw new ApiException("Missing the required parameter 'namespace' when calling proxyDELETENamespacedService(Async)"); } - + com.squareup.okhttp.Call call = proxyDELETENamespacedServiceCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -23551,7 +22951,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyDELETENamespacedServiceWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -23592,7 +22992,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyDELETENamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -23611,14 +23011,10 @@ private com.squareup.okhttp.Call proxyDELETENamespacedServiceWithPathValidateBef throw new ApiException("Missing the required parameter 'path' when calling proxyDELETENamespacedServiceWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyDELETENamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -23696,7 +23092,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyDELETENodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -23735,7 +23131,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyDELETENodeValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -23744,14 +23140,10 @@ private com.squareup.okhttp.Call proxyDELETENodeValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'name' when calling proxyDELETENode(Async)"); } - + com.squareup.okhttp.Call call = proxyDELETENodeCall(name, progressListener, progressRequestListener); return call; - - - - } /** @@ -23824,7 +23216,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyDELETENodeWithPathCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -23864,7 +23256,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyDELETENodeWithPathValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -23878,14 +23270,10 @@ private com.squareup.okhttp.Call proxyDELETENodeWithPathValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'path' when calling proxyDELETENodeWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyDELETENodeWithPathCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -23961,7 +23349,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyGETNamespacedPodCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -24001,7 +23389,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyGETNamespacedPodValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24015,14 +23403,10 @@ private com.squareup.okhttp.Call proxyGETNamespacedPodValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling proxyGETNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = proxyGETNamespacedPodCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -24099,7 +23483,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyGETNamespacedPodWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -24140,7 +23524,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyGETNamespacedPodWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24159,14 +23543,10 @@ private com.squareup.okhttp.Call proxyGETNamespacedPodWithPathValidateBeforeCall throw new ApiException("Missing the required parameter 'path' when calling proxyGETNamespacedPodWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyGETNamespacedPodWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -24245,7 +23625,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyGETNamespacedServiceCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -24285,7 +23665,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyGETNamespacedServiceValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24299,14 +23679,10 @@ private com.squareup.okhttp.Call proxyGETNamespacedServiceValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling proxyGETNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = proxyGETNamespacedServiceCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -24383,7 +23759,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyGETNamespacedServiceWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -24424,7 +23800,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyGETNamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24443,14 +23819,10 @@ private com.squareup.okhttp.Call proxyGETNamespacedServiceWithPathValidateBefore throw new ApiException("Missing the required parameter 'path' when calling proxyGETNamespacedServiceWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyGETNamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -24528,7 +23900,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyGETNodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -24567,7 +23939,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyGETNodeValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24576,14 +23948,10 @@ private com.squareup.okhttp.Call proxyGETNodeValidateBeforeCall(String name, fin throw new ApiException("Missing the required parameter 'name' when calling proxyGETNode(Async)"); } - + com.squareup.okhttp.Call call = proxyGETNodeCall(name, progressListener, progressRequestListener); return call; - - - - } /** @@ -24656,7 +24024,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyGETNodeWithPathCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -24696,7 +24064,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyGETNodeWithPathValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24710,14 +24078,10 @@ private com.squareup.okhttp.Call proxyGETNodeWithPathValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'path' when calling proxyGETNodeWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyGETNodeWithPathCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -24793,7 +24157,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyHEADNamespacedPodCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -24833,7 +24197,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyHEADNamespacedPodValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24847,14 +24211,10 @@ private com.squareup.okhttp.Call proxyHEADNamespacedPodValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling proxyHEADNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = proxyHEADNamespacedPodCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -24931,7 +24291,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyHEADNamespacedPodWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -24972,7 +24332,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyHEADNamespacedPodWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -24991,14 +24351,10 @@ private com.squareup.okhttp.Call proxyHEADNamespacedPodWithPathValidateBeforeCal throw new ApiException("Missing the required parameter 'path' when calling proxyHEADNamespacedPodWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyHEADNamespacedPodWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -25077,7 +24433,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyHEADNamespacedServiceCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -25117,7 +24473,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyHEADNamespacedServiceValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -25131,14 +24487,10 @@ private com.squareup.okhttp.Call proxyHEADNamespacedServiceValidateBeforeCall(St throw new ApiException("Missing the required parameter 'namespace' when calling proxyHEADNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = proxyHEADNamespacedServiceCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -25215,7 +24567,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyHEADNamespacedServiceWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -25256,7 +24608,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyHEADNamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -25275,14 +24627,10 @@ private com.squareup.okhttp.Call proxyHEADNamespacedServiceWithPathValidateBefor throw new ApiException("Missing the required parameter 'path' when calling proxyHEADNamespacedServiceWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyHEADNamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -25360,7 +24708,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyHEADNodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -25399,7 +24747,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyHEADNodeValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -25408,14 +24756,10 @@ private com.squareup.okhttp.Call proxyHEADNodeValidateBeforeCall(String name, fi throw new ApiException("Missing the required parameter 'name' when calling proxyHEADNode(Async)"); } - + com.squareup.okhttp.Call call = proxyHEADNodeCall(name, progressListener, progressRequestListener); return call; - - - - } /** @@ -25488,7 +24832,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyHEADNodeWithPathCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -25528,7 +24872,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyHEADNodeWithPathValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -25542,14 +24886,10 @@ private com.squareup.okhttp.Call proxyHEADNodeWithPathValidateBeforeCall(String throw new ApiException("Missing the required parameter 'path' when calling proxyHEADNodeWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyHEADNodeWithPathCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -25625,7 +24965,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyOPTIONSNamespacedPodCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -25665,7 +25005,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyOPTIONSNamespacedPodValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -25679,14 +25019,10 @@ private com.squareup.okhttp.Call proxyOPTIONSNamespacedPodValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling proxyOPTIONSNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = proxyOPTIONSNamespacedPodCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -25763,7 +25099,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyOPTIONSNamespacedPodWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -25804,7 +25140,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyOPTIONSNamespacedPodWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -25823,14 +25159,10 @@ private com.squareup.okhttp.Call proxyOPTIONSNamespacedPodWithPathValidateBefore throw new ApiException("Missing the required parameter 'path' when calling proxyOPTIONSNamespacedPodWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyOPTIONSNamespacedPodWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -25909,7 +25241,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyOPTIONSNamespacedServiceCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -25949,7 +25281,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyOPTIONSNamespacedServiceValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -25963,14 +25295,10 @@ private com.squareup.okhttp.Call proxyOPTIONSNamespacedServiceValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling proxyOPTIONSNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = proxyOPTIONSNamespacedServiceCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -26047,7 +25375,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyOPTIONSNamespacedServiceWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -26088,7 +25416,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyOPTIONSNamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -26107,14 +25435,10 @@ private com.squareup.okhttp.Call proxyOPTIONSNamespacedServiceWithPathValidateBe throw new ApiException("Missing the required parameter 'path' when calling proxyOPTIONSNamespacedServiceWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyOPTIONSNamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -26192,7 +25516,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyOPTIONSNodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -26231,7 +25555,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyOPTIONSNodeValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -26240,14 +25564,10 @@ private com.squareup.okhttp.Call proxyOPTIONSNodeValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'name' when calling proxyOPTIONSNode(Async)"); } - + com.squareup.okhttp.Call call = proxyOPTIONSNodeCall(name, progressListener, progressRequestListener); return call; - - - - } /** @@ -26320,7 +25640,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyOPTIONSNodeWithPathCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -26360,7 +25680,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "OPTIONS", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyOPTIONSNodeWithPathValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -26374,14 +25694,10 @@ private com.squareup.okhttp.Call proxyOPTIONSNodeWithPathValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'path' when calling proxyOPTIONSNodeWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyOPTIONSNodeWithPathCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -26457,7 +25773,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPATCHNamespacedPodCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -26497,7 +25813,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPATCHNamespacedPodValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -26511,14 +25827,10 @@ private com.squareup.okhttp.Call proxyPATCHNamespacedPodValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling proxyPATCHNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = proxyPATCHNamespacedPodCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -26595,7 +25907,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPATCHNamespacedPodWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -26636,7 +25948,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPATCHNamespacedPodWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -26655,14 +25967,10 @@ private com.squareup.okhttp.Call proxyPATCHNamespacedPodWithPathValidateBeforeCa throw new ApiException("Missing the required parameter 'path' when calling proxyPATCHNamespacedPodWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPATCHNamespacedPodWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -26741,7 +26049,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPATCHNamespacedServiceCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -26781,7 +26089,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPATCHNamespacedServiceValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -26795,14 +26103,10 @@ private com.squareup.okhttp.Call proxyPATCHNamespacedServiceValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling proxyPATCHNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = proxyPATCHNamespacedServiceCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -26879,7 +26183,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPATCHNamespacedServiceWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -26919,151 +26223,147 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); - } - - @SuppressWarnings("rawtypes") - private com.squareup.okhttp.Call proxyPATCHNamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - - // verify the required parameter 'name' is set - if (name == null) { - throw new ApiException("Missing the required parameter 'name' when calling proxyPATCHNamespacedServiceWithPath(Async)"); - } - - // verify the required parameter 'namespace' is set - if (namespace == null) { - throw new ApiException("Missing the required parameter 'namespace' when calling proxyPATCHNamespacedServiceWithPath(Async)"); - } - - // verify the required parameter 'path' is set - if (path == null) { - throw new ApiException("Missing the required parameter 'path' when calling proxyPATCHNamespacedServiceWithPath(Async)"); - } - - - com.squareup.okhttp.Call call = proxyPATCHNamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); - return call; - - - - - } - /** - * - * proxy PATCH requests to Service - * @param name name of the Service (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param path path to the resource (required) - * @return String - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public String proxyPATCHNamespacedServiceWithPath(String name, String namespace, String path) throws ApiException { - ApiResponse resp = proxyPATCHNamespacedServiceWithPathWithHttpInfo(name, namespace, path); - return resp.getData(); - } - - /** - * - * proxy PATCH requests to Service - * @param name name of the Service (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param path path to the resource (required) - * @return ApiResponse<String> - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public ApiResponse proxyPATCHNamespacedServiceWithPathWithHttpInfo(String name, String namespace, String path) throws ApiException { - com.squareup.okhttp.Call call = proxyPATCHNamespacedServiceWithPathValidateBeforeCall(name, namespace, path, null, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return apiClient.execute(call, localVarReturnType); - } - - /** - * (asynchronously) - * proxy PATCH requests to Service - * @param name name of the Service (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param path path to the resource (required) - * @param callback The callback to be executed when the API call finishes - * @return The request call - * @throws ApiException If fail to process the API call, e.g. serializing the request body object - */ - public com.squareup.okhttp.Call proxyPATCHNamespacedServiceWithPathAsync(String name, String namespace, String path, final ApiCallback callback) throws ApiException { - - ProgressResponseBody.ProgressListener progressListener = null; - ProgressRequestBody.ProgressRequestListener progressRequestListener = null; - - if (callback != null) { - progressListener = new ProgressResponseBody.ProgressListener() { - @Override - public void update(long bytesRead, long contentLength, boolean done) { - callback.onDownloadProgress(bytesRead, contentLength, done); - } - }; - - progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { - @Override - public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { - callback.onUploadProgress(bytesWritten, contentLength, done); - } - }; - } - - com.squareup.okhttp.Call call = proxyPATCHNamespacedServiceWithPathValidateBeforeCall(name, namespace, path, progressListener, progressRequestListener); - Type localVarReturnType = new TypeToken(){}.getType(); - apiClient.executeAsync(call, localVarReturnType, callback); - return call; - } - /** - * Build call for proxyPATCHNode - * @param name name of the Node (required) - * @param progressListener Progress listener - * @param progressRequestListener Progress request listener - * @return Call to execute - * @throws ApiException If fail to serialize the request body object - */ - public com.squareup.okhttp.Call proxyPATCHNodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - Object localVarPostBody = null; - - // create path and map variables - String localVarPath = "/api/v1/proxy/nodes/{name}" - .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); - - List localVarQueryParams = new ArrayList(); - List localVarCollectionQueryParams = new ArrayList(); - - Map localVarHeaderParams = new HashMap(); - - Map localVarFormParams = new HashMap(); - - final String[] localVarAccepts = { - "*/*" - }; - final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); - - final String[] localVarContentTypes = { - "*/*" - }; - final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - localVarHeaderParams.put("Content-Type", localVarContentType); - - if(progressListener != null) { - apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { - @Override - public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { - com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); - return originalResponse.newBuilder() - .body(new ProgressResponseBody(originalResponse.body(), progressListener)) - .build(); - } - }); - } - - String[] localVarAuthNames = new String[] { "BearerToken" }; - return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); - } - + @SuppressWarnings("rawtypes") + private com.squareup.okhttp.Call proxyPATCHNamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + + // verify the required parameter 'name' is set + if (name == null) { + throw new ApiException("Missing the required parameter 'name' when calling proxyPATCHNamespacedServiceWithPath(Async)"); + } + + // verify the required parameter 'namespace' is set + if (namespace == null) { + throw new ApiException("Missing the required parameter 'namespace' when calling proxyPATCHNamespacedServiceWithPath(Async)"); + } + + // verify the required parameter 'path' is set + if (path == null) { + throw new ApiException("Missing the required parameter 'path' when calling proxyPATCHNamespacedServiceWithPath(Async)"); + } + + + com.squareup.okhttp.Call call = proxyPATCHNamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); + return call; + + } + + /** + * + * proxy PATCH requests to Service + * @param name name of the Service (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param path path to the resource (required) + * @return String + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public String proxyPATCHNamespacedServiceWithPath(String name, String namespace, String path) throws ApiException { + ApiResponse resp = proxyPATCHNamespacedServiceWithPathWithHttpInfo(name, namespace, path); + return resp.getData(); + } + + /** + * + * proxy PATCH requests to Service + * @param name name of the Service (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param path path to the resource (required) + * @return ApiResponse<String> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public ApiResponse proxyPATCHNamespacedServiceWithPathWithHttpInfo(String name, String namespace, String path) throws ApiException { + com.squareup.okhttp.Call call = proxyPATCHNamespacedServiceWithPathValidateBeforeCall(name, namespace, path, null, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return apiClient.execute(call, localVarReturnType); + } + + /** + * (asynchronously) + * proxy PATCH requests to Service + * @param name name of the Service (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param path path to the resource (required) + * @param callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + */ + public com.squareup.okhttp.Call proxyPATCHNamespacedServiceWithPathAsync(String name, String namespace, String path, final ApiCallback callback) throws ApiException { + + ProgressResponseBody.ProgressListener progressListener = null; + ProgressRequestBody.ProgressRequestListener progressRequestListener = null; + + if (callback != null) { + progressListener = new ProgressResponseBody.ProgressListener() { + @Override + public void update(long bytesRead, long contentLength, boolean done) { + callback.onDownloadProgress(bytesRead, contentLength, done); + } + }; + + progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { + @Override + public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { + callback.onUploadProgress(bytesWritten, contentLength, done); + } + }; + } + + com.squareup.okhttp.Call call = proxyPATCHNamespacedServiceWithPathValidateBeforeCall(name, namespace, path, progressListener, progressRequestListener); + Type localVarReturnType = new TypeToken(){}.getType(); + apiClient.executeAsync(call, localVarReturnType, callback); + return call; + } + /** + * Build call for proxyPATCHNode + * @param name name of the Node (required) + * @param progressListener Progress listener + * @param progressRequestListener Progress request listener + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + */ + public com.squareup.okhttp.Call proxyPATCHNodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + Object localVarPostBody = null; + + // create path and map variables + String localVarPath = "/api/v1/proxy/nodes/{name}" + .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + + Map localVarHeaderParams = new HashMap(); + + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "*/*" + }; + final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); + + final String[] localVarContentTypes = { + "*/*" + }; + final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + localVarHeaderParams.put("Content-Type", localVarContentType); + + if(progressListener != null) { + apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { + @Override + public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { + com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); + return originalResponse.newBuilder() + .body(new ProgressResponseBody(originalResponse.body(), progressListener)) + .build(); + } + }); + } + + String[] localVarAuthNames = new String[] { "BearerToken" }; + return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); + } + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPATCHNodeValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -27072,14 +26372,10 @@ private com.squareup.okhttp.Call proxyPATCHNodeValidateBeforeCall(String name, f throw new ApiException("Missing the required parameter 'name' when calling proxyPATCHNode(Async)"); } - + com.squareup.okhttp.Call call = proxyPATCHNodeCall(name, progressListener, progressRequestListener); return call; - - - - } /** @@ -27152,7 +26448,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPATCHNodeWithPathCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -27192,7 +26488,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPATCHNodeWithPathValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -27206,14 +26502,10 @@ private com.squareup.okhttp.Call proxyPATCHNodeWithPathValidateBeforeCall(String throw new ApiException("Missing the required parameter 'path' when calling proxyPATCHNodeWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPATCHNodeWithPathCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -27289,7 +26581,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPOSTNamespacedPodCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -27329,7 +26621,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPOSTNamespacedPodValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -27343,14 +26635,10 @@ private com.squareup.okhttp.Call proxyPOSTNamespacedPodValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling proxyPOSTNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = proxyPOSTNamespacedPodCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -27427,7 +26715,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPOSTNamespacedPodWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -27468,7 +26756,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPOSTNamespacedPodWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -27487,14 +26775,10 @@ private com.squareup.okhttp.Call proxyPOSTNamespacedPodWithPathValidateBeforeCal throw new ApiException("Missing the required parameter 'path' when calling proxyPOSTNamespacedPodWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPOSTNamespacedPodWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -27573,7 +26857,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPOSTNamespacedServiceCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -27613,7 +26897,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPOSTNamespacedServiceValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -27627,14 +26911,10 @@ private com.squareup.okhttp.Call proxyPOSTNamespacedServiceValidateBeforeCall(St throw new ApiException("Missing the required parameter 'namespace' when calling proxyPOSTNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = proxyPOSTNamespacedServiceCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -27711,7 +26991,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPOSTNamespacedServiceWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -27752,7 +27032,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPOSTNamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -27771,14 +27051,10 @@ private com.squareup.okhttp.Call proxyPOSTNamespacedServiceWithPathValidateBefor throw new ApiException("Missing the required parameter 'path' when calling proxyPOSTNamespacedServiceWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPOSTNamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -27856,7 +27132,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPOSTNodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -27895,7 +27171,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPOSTNodeValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -27904,14 +27180,10 @@ private com.squareup.okhttp.Call proxyPOSTNodeValidateBeforeCall(String name, fi throw new ApiException("Missing the required parameter 'name' when calling proxyPOSTNode(Async)"); } - + com.squareup.okhttp.Call call = proxyPOSTNodeCall(name, progressListener, progressRequestListener); return call; - - - - } /** @@ -27984,7 +27256,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPOSTNodeWithPathCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -28024,7 +27296,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPOSTNodeWithPathValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -28038,14 +27310,10 @@ private com.squareup.okhttp.Call proxyPOSTNodeWithPathValidateBeforeCall(String throw new ApiException("Missing the required parameter 'path' when calling proxyPOSTNodeWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPOSTNodeWithPathCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -28121,7 +27389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPUTNamespacedPodCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -28161,7 +27429,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPUTNamespacedPodValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -28175,14 +27443,10 @@ private com.squareup.okhttp.Call proxyPUTNamespacedPodValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling proxyPUTNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = proxyPUTNamespacedPodCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -28259,7 +27523,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPUTNamespacedPodWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -28300,7 +27564,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPUTNamespacedPodWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -28319,14 +27583,10 @@ private com.squareup.okhttp.Call proxyPUTNamespacedPodWithPathValidateBeforeCall throw new ApiException("Missing the required parameter 'path' when calling proxyPUTNamespacedPodWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPUTNamespacedPodWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -28405,7 +27665,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPUTNamespacedServiceCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -28445,7 +27705,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPUTNamespacedServiceValidateBeforeCall(String name, String namespace, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -28459,14 +27719,10 @@ private com.squareup.okhttp.Call proxyPUTNamespacedServiceValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling proxyPUTNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = proxyPUTNamespacedServiceCall(name, namespace, progressListener, progressRequestListener); return call; - - - - } /** @@ -28543,7 +27799,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPUTNamespacedServiceWithPathCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -28584,7 +27840,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPUTNamespacedServiceWithPathValidateBeforeCall(String name, String namespace, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -28603,14 +27859,10 @@ private com.squareup.okhttp.Call proxyPUTNamespacedServiceWithPathValidateBefore throw new ApiException("Missing the required parameter 'path' when calling proxyPUTNamespacedServiceWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPUTNamespacedServiceWithPathCall(name, namespace, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -28688,7 +27940,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPUTNodeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -28727,7 +27979,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPUTNodeValidateBeforeCall(String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -28736,14 +27988,10 @@ private com.squareup.okhttp.Call proxyPUTNodeValidateBeforeCall(String name, fin throw new ApiException("Missing the required parameter 'name' when calling proxyPUTNode(Async)"); } - + com.squareup.okhttp.Call call = proxyPUTNodeCall(name, progressListener, progressRequestListener); return call; - - - - } /** @@ -28816,7 +28064,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call proxyPUTNodeWithPathCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/proxy/nodes/{name}/{path}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -28856,7 +28104,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call proxyPUTNodeWithPathValidateBeforeCall(String name, String path, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -28870,14 +28118,10 @@ private com.squareup.okhttp.Call proxyPUTNodeWithPathValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'path' when calling proxyPUTNodeWithPath(Async)"); } - + com.squareup.okhttp.Call call = proxyPUTNodeWithPathCall(name, path, progressListener, progressRequestListener); return call; - - - - } /** @@ -28953,7 +28197,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readComponentStatusCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/componentstatuses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -28994,7 +28238,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readComponentStatusValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -29003,14 +28247,10 @@ private com.squareup.okhttp.Call readComponentStatusValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'name' when calling readComponentStatus(Async)"); } - + com.squareup.okhttp.Call call = readComponentStatusCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -29088,7 +28328,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespaceCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -29133,7 +28373,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespaceValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -29142,14 +28382,10 @@ private com.squareup.okhttp.Call readNamespaceValidateBeforeCall(String name, St throw new ApiException("Missing the required parameter 'name' when calling readNamespace(Async)"); } - + com.squareup.okhttp.Call call = readNamespaceCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -29231,7 +28467,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespaceStatusCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -29272,7 +28508,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespaceStatusValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -29281,14 +28517,10 @@ private com.squareup.okhttp.Call readNamespaceStatusValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'name' when calling readNamespaceStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespaceStatusCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -29367,7 +28599,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedConfigMapCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/configmaps/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -29413,7 +28645,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedConfigMapValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -29427,14 +28659,10 @@ private com.squareup.okhttp.Call readNamespacedConfigMapValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedConfigMap(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedConfigMapCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -29522,7 +28750,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedEndpointsCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/endpoints/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -29568,7 +28796,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedEndpointsValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -29582,14 +28810,10 @@ private com.squareup.okhttp.Call readNamespacedEndpointsValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedEndpoints(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedEndpointsCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -29677,7 +28901,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedEventCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/events/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -29723,7 +28947,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedEventValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -29737,14 +28961,10 @@ private com.squareup.okhttp.Call readNamespacedEventValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedEvent(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedEventCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -29832,7 +29052,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedLimitRangeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/limitranges/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -29878,7 +29098,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedLimitRangeValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -29892,14 +29112,10 @@ private com.squareup.okhttp.Call readNamespacedLimitRangeValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedLimitRange(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedLimitRangeCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -29987,7 +29203,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPersistentVolumeClaimCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -30033,7 +29249,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPersistentVolumeClaimValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -30047,14 +29263,10 @@ private com.squareup.okhttp.Call readNamespacedPersistentVolumeClaimValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPersistentVolumeClaim(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPersistentVolumeClaimCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -30140,7 +29352,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPersistentVolumeClaimStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -30182,7 +29394,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPersistentVolumeClaimStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -30196,14 +29408,10 @@ private com.squareup.okhttp.Call readNamespacedPersistentVolumeClaimStatusValida throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPersistentVolumeClaimStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPersistentVolumeClaimStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -30285,7 +29493,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPodCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -30331,7 +29539,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPodValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -30345,14 +29553,10 @@ private com.squareup.okhttp.Call readNamespacedPodValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPodCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -30445,7 +29649,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPodLogCall(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/log" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -30501,171 +29705,167 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - - @SuppressWarnings("rawtypes") - private com.squareup.okhttp.Call readNamespacedPodLogValidateBeforeCall(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - - // verify the required parameter 'name' is set - if (name == null) { - throw new ApiException("Missing the required parameter 'name' when calling readNamespacedPodLog(Async)"); - } - - // verify the required parameter 'namespace' is set - if (namespace == null) { - throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPodLog(Async)"); - } - - - com.squareup.okhttp.Call call = readNamespacedPodLogCall(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps, progressListener, progressRequestListener); - return call; - - - - - - } - - /** - * - * read log of the specified Pod - * @param name name of the Pod (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod. (optional) - * @param follow Follow the log stream of the pod. Defaults to false. (optional) - * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. (optional) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param previous Return previous terminated container logs. Defaults to false. (optional) - * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. (optional) - * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime (optional) - * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. (optional) - * @return String - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public String readNamespacedPodLog(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps) throws ApiException { - ApiResponse resp = readNamespacedPodLogWithHttpInfo(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps); - return resp.getData(); - } - - /** - * - * read log of the specified Pod - * @param name name of the Pod (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod. (optional) - * @param follow Follow the log stream of the pod. Defaults to false. (optional) - * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. (optional) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param previous Return previous terminated container logs. Defaults to false. (optional) - * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. (optional) - * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime (optional) - * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. (optional) - * @return ApiResponse<String> - * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - */ - public ApiResponse readNamespacedPodLogWithHttpInfo(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps) throws ApiException { - com.squareup.okhttp.Call call = readNamespacedPodLogValidateBeforeCall(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps, null, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return apiClient.execute(call, localVarReturnType); - } - - /** - * (asynchronously) - * read log of the specified Pod - * @param name name of the Pod (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod. (optional) - * @param follow Follow the log stream of the pod. Defaults to false. (optional) - * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. (optional) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param previous Return previous terminated container logs. Defaults to false. (optional) - * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. (optional) - * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime (optional) - * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. (optional) - * @param callback The callback to be executed when the API call finishes - * @return The request call - * @throws ApiException If fail to process the API call, e.g. serializing the request body object - */ - public com.squareup.okhttp.Call readNamespacedPodLogAsync(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps, final ApiCallback callback) throws ApiException { - - ProgressResponseBody.ProgressListener progressListener = null; - ProgressRequestBody.ProgressRequestListener progressRequestListener = null; - - if (callback != null) { - progressListener = new ProgressResponseBody.ProgressListener() { - @Override - public void update(long bytesRead, long contentLength, boolean done) { - callback.onDownloadProgress(bytesRead, contentLength, done); - } - }; - - progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { - @Override - public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { - callback.onUploadProgress(bytesWritten, contentLength, done); - } - }; - } - - com.squareup.okhttp.Call call = readNamespacedPodLogValidateBeforeCall(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps, progressListener, progressRequestListener); - Type localVarReturnType = new TypeToken(){}.getType(); - apiClient.executeAsync(call, localVarReturnType, callback); - return call; - } - /** - * Build call for readNamespacedPodStatus - * @param name name of the Pod (required) - * @param namespace object name and auth scope, such as for teams and projects (required) - * @param pretty If 'true', then the output is pretty printed. (optional) - * @param progressListener Progress listener - * @param progressRequestListener Progress request listener - * @return Call to execute - * @throws ApiException If fail to serialize the request body object - */ - public com.squareup.okhttp.Call readNamespacedPodStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - Object localVarPostBody = null; - - // create path and map variables - String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/status" - .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) - .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); - - List localVarQueryParams = new ArrayList(); - List localVarCollectionQueryParams = new ArrayList(); - if (pretty != null) - localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); - - Map localVarHeaderParams = new HashMap(); - - Map localVarFormParams = new HashMap(); - - final String[] localVarAccepts = { - "application/json", "application/yaml", "application/vnd.kubernetes.protobuf" - }; - final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); - - final String[] localVarContentTypes = { - "*/*" - }; - final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - localVarHeaderParams.put("Content-Type", localVarContentType); - if(progressListener != null) { - apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { - @Override - public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { - com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); - return originalResponse.newBuilder() - .body(new ProgressResponseBody(originalResponse.body(), progressListener)) - .build(); - } - }); - } - - String[] localVarAuthNames = new String[] { "BearerToken" }; - return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); - } - + @SuppressWarnings("rawtypes") + private com.squareup.okhttp.Call readNamespacedPodLogValidateBeforeCall(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + + // verify the required parameter 'name' is set + if (name == null) { + throw new ApiException("Missing the required parameter 'name' when calling readNamespacedPodLog(Async)"); + } + + // verify the required parameter 'namespace' is set + if (namespace == null) { + throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPodLog(Async)"); + } + + + com.squareup.okhttp.Call call = readNamespacedPodLogCall(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps, progressListener, progressRequestListener); + return call; + + } + + /** + * + * read log of the specified Pod + * @param name name of the Pod (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod. (optional) + * @param follow Follow the log stream of the pod. Defaults to false. (optional) + * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. (optional) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param previous Return previous terminated container logs. Defaults to false. (optional) + * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. (optional) + * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime (optional) + * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. (optional) + * @return String + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public String readNamespacedPodLog(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps) throws ApiException { + ApiResponse resp = readNamespacedPodLogWithHttpInfo(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps); + return resp.getData(); + } + + /** + * + * read log of the specified Pod + * @param name name of the Pod (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod. (optional) + * @param follow Follow the log stream of the pod. Defaults to false. (optional) + * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. (optional) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param previous Return previous terminated container logs. Defaults to false. (optional) + * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. (optional) + * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime (optional) + * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. (optional) + * @return ApiResponse<String> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public ApiResponse readNamespacedPodLogWithHttpInfo(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps) throws ApiException { + com.squareup.okhttp.Call call = readNamespacedPodLogValidateBeforeCall(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps, null, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return apiClient.execute(call, localVarReturnType); + } + + /** + * (asynchronously) + * read log of the specified Pod + * @param name name of the Pod (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod. (optional) + * @param follow Follow the log stream of the pod. Defaults to false. (optional) + * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. (optional) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param previous Return previous terminated container logs. Defaults to false. (optional) + * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. (optional) + * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime (optional) + * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. (optional) + * @param callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + */ + public com.squareup.okhttp.Call readNamespacedPodLogAsync(String name, String namespace, String container, Boolean follow, Integer limitBytes, String pretty, Boolean previous, Integer sinceSeconds, Integer tailLines, Boolean timestamps, final ApiCallback callback) throws ApiException { + + ProgressResponseBody.ProgressListener progressListener = null; + ProgressRequestBody.ProgressRequestListener progressRequestListener = null; + + if (callback != null) { + progressListener = new ProgressResponseBody.ProgressListener() { + @Override + public void update(long bytesRead, long contentLength, boolean done) { + callback.onDownloadProgress(bytesRead, contentLength, done); + } + }; + + progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { + @Override + public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { + callback.onUploadProgress(bytesWritten, contentLength, done); + } + }; + } + + com.squareup.okhttp.Call call = readNamespacedPodLogValidateBeforeCall(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps, progressListener, progressRequestListener); + Type localVarReturnType = new TypeToken(){}.getType(); + apiClient.executeAsync(call, localVarReturnType, callback); + return call; + } + /** + * Build call for readNamespacedPodStatus + * @param name name of the Pod (required) + * @param namespace object name and auth scope, such as for teams and projects (required) + * @param pretty If 'true', then the output is pretty printed. (optional) + * @param progressListener Progress listener + * @param progressRequestListener Progress request listener + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + */ + public com.squareup.okhttp.Call readNamespacedPodStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + Object localVarPostBody = null; + + // create path and map variables + String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/status" + .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) + .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + if (pretty != null) + localVarQueryParams.addAll(apiClient.parameterToPair("pretty", pretty)); + + Map localVarHeaderParams = new HashMap(); + + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json", "application/yaml", "application/vnd.kubernetes.protobuf" + }; + final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); + + final String[] localVarContentTypes = { + "*/*" + }; + final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + localVarHeaderParams.put("Content-Type", localVarContentType); + + if(progressListener != null) { + apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { + @Override + public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { + com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); + return originalResponse.newBuilder() + .body(new ProgressResponseBody(originalResponse.body(), progressListener)) + .build(); + } + }); + } + + String[] localVarAuthNames = new String[] { "BearerToken" }; + return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); + } + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPodStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -30679,14 +29879,10 @@ private com.squareup.okhttp.Call readNamespacedPodStatusValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPodStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPodStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -30768,7 +29964,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPodTemplateCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/podtemplates/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -30814,7 +30010,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPodTemplateValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -30828,14 +30024,10 @@ private com.squareup.okhttp.Call readNamespacedPodTemplateValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPodTemplate(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPodTemplateCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -30923,7 +30115,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicationControllerCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -30969,7 +30161,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicationControllerValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -30983,14 +30175,10 @@ private com.squareup.okhttp.Call readNamespacedReplicationControllerValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicationController(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicationControllerCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -31076,7 +30264,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicationControllerScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -31118,7 +30306,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicationControllerScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -31132,14 +30320,10 @@ private com.squareup.okhttp.Call readNamespacedReplicationControllerScaleValidat throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicationControllerScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicationControllerScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -31219,7 +30403,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicationControllerStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -31261,7 +30445,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicationControllerStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -31275,14 +30459,10 @@ private com.squareup.okhttp.Call readNamespacedReplicationControllerStatusValida throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicationControllerStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicationControllerStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -31364,7 +30544,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedResourceQuotaCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -31410,7 +30590,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedResourceQuotaValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -31424,14 +30604,10 @@ private com.squareup.okhttp.Call readNamespacedResourceQuotaValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedResourceQuota(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedResourceQuotaCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -31517,7 +30693,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedResourceQuotaStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -31559,7 +30735,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedResourceQuotaStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -31573,14 +30749,10 @@ private com.squareup.okhttp.Call readNamespacedResourceQuotaStatusValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedResourceQuotaStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedResourceQuotaStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -31662,7 +30834,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedSecretCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/secrets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -31708,7 +30880,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedSecretValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -31722,14 +30894,10 @@ private com.squareup.okhttp.Call readNamespacedSecretValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedSecret(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedSecretCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -31817,7 +30985,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedServiceCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -31863,7 +31031,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedServiceValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -31877,14 +31045,10 @@ private com.squareup.okhttp.Call readNamespacedServiceValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedServiceCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -31972,7 +31136,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedServiceAccountCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/serviceaccounts/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -32018,7 +31182,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedServiceAccountValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -32032,14 +31196,10 @@ private com.squareup.okhttp.Call readNamespacedServiceAccountValidateBeforeCall( throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedServiceAccount(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedServiceAccountCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -32125,7 +31285,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedServiceStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -32167,7 +31327,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedServiceStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -32181,14 +31341,10 @@ private com.squareup.okhttp.Call readNamespacedServiceStatusValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedServiceStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedServiceStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -32269,7 +31425,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNodeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -32314,7 +31470,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNodeValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -32323,14 +31479,10 @@ private com.squareup.okhttp.Call readNodeValidateBeforeCall(String name, String throw new ApiException("Missing the required parameter 'name' when calling readNode(Async)"); } - + com.squareup.okhttp.Call call = readNodeCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -32412,7 +31564,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNodeStatusCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -32453,7 +31605,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNodeStatusValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -32462,14 +31614,10 @@ private com.squareup.okhttp.Call readNodeStatusValidateBeforeCall(String name, S throw new ApiException("Missing the required parameter 'name' when calling readNodeStatus(Async)"); } - + com.squareup.okhttp.Call call = readNodeStatusCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -32547,7 +31695,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readPersistentVolumeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -32592,7 +31740,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readPersistentVolumeValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -32601,14 +31749,10 @@ private com.squareup.okhttp.Call readPersistentVolumeValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'name' when calling readPersistentVolume(Async)"); } - + com.squareup.okhttp.Call call = readPersistentVolumeCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -32690,7 +31834,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readPersistentVolumeStatusCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -32731,7 +31875,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readPersistentVolumeStatusValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -32740,14 +31884,10 @@ private com.squareup.okhttp.Call readPersistentVolumeStatusValidateBeforeCall(St throw new ApiException("Missing the required parameter 'name' when calling readPersistentVolumeStatus(Async)"); } - + com.squareup.okhttp.Call call = readPersistentVolumeStatusCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -32824,7 +31964,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespaceCall(String name, V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -32865,7 +32005,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespaceValidateBeforeCall(String name, V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -32879,14 +32019,10 @@ private com.squareup.okhttp.Call replaceNamespaceValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling replaceNamespace(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespaceCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -32966,7 +32102,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespaceFinalizeCall(String name, V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}/finalize" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -33007,7 +32143,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespaceFinalizeValidateBeforeCall(String name, V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -33021,14 +32157,10 @@ private com.squareup.okhttp.Call replaceNamespaceFinalizeValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling replaceNamespaceFinalize(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespaceFinalizeCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -33108,7 +32240,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespaceStatusCall(String name, V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -33149,7 +32281,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespaceStatusValidateBeforeCall(String name, V1Namespace body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -33163,14 +32295,10 @@ private com.squareup.okhttp.Call replaceNamespaceStatusValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling replaceNamespaceStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespaceStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -33251,7 +32379,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedConfigMapCall(String name, String namespace, V1ConfigMap body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/configmaps/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -33293,7 +32421,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedConfigMapValidateBeforeCall(String name, String namespace, V1ConfigMap body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -33312,14 +32440,10 @@ private com.squareup.okhttp.Call replaceNamespacedConfigMapValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedConfigMap(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedConfigMapCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -33403,7 +32527,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedEndpointsCall(String name, String namespace, V1Endpoints body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/endpoints/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -33445,7 +32569,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedEndpointsValidateBeforeCall(String name, String namespace, V1Endpoints body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -33464,14 +32588,10 @@ private com.squareup.okhttp.Call replaceNamespacedEndpointsValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedEndpoints(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedEndpointsCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -33555,7 +32675,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedEventCall(String name, String namespace, V1Event body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/events/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -33597,7 +32717,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedEventValidateBeforeCall(String name, String namespace, V1Event body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -33616,14 +32736,10 @@ private com.squareup.okhttp.Call replaceNamespacedEventValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedEvent(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedEventCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -33707,7 +32823,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedLimitRangeCall(String name, String namespace, V1LimitRange body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/limitranges/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -33749,7 +32865,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedLimitRangeValidateBeforeCall(String name, String namespace, V1LimitRange body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -33768,14 +32884,10 @@ private com.squareup.okhttp.Call replaceNamespacedLimitRangeValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedLimitRange(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedLimitRangeCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -33859,7 +32971,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPersistentVolumeClaimCall(String name, String namespace, V1PersistentVolumeClaim body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -33901,7 +33013,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPersistentVolumeClaimValidateBeforeCall(String name, String namespace, V1PersistentVolumeClaim body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -33920,14 +33032,10 @@ private com.squareup.okhttp.Call replaceNamespacedPersistentVolumeClaimValidateB throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPersistentVolumeClaim(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPersistentVolumeClaimCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -34011,7 +33119,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPersistentVolumeClaimStatusCall(String name, String namespace, V1PersistentVolumeClaim body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -34053,7 +33161,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPersistentVolumeClaimStatusValidateBeforeCall(String name, String namespace, V1PersistentVolumeClaim body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -34072,14 +33180,10 @@ private com.squareup.okhttp.Call replaceNamespacedPersistentVolumeClaimStatusVal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPersistentVolumeClaimStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPersistentVolumeClaimStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -34163,7 +33267,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPodCall(String name, String namespace, V1Pod body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -34205,7 +33309,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPodValidateBeforeCall(String name, String namespace, V1Pod body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -34224,14 +33328,10 @@ private com.squareup.okhttp.Call replaceNamespacedPodValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPod(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPodCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -34315,7 +33415,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPodStatusCall(String name, String namespace, V1Pod body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/pods/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -34357,7 +33457,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPodStatusValidateBeforeCall(String name, String namespace, V1Pod body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -34376,14 +33476,10 @@ private com.squareup.okhttp.Call replaceNamespacedPodStatusValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPodStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPodStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -34467,7 +33563,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPodTemplateCall(String name, String namespace, V1PodTemplate body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/podtemplates/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -34509,7 +33605,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPodTemplateValidateBeforeCall(String name, String namespace, V1PodTemplate body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -34528,14 +33624,10 @@ private com.squareup.okhttp.Call replaceNamespacedPodTemplateValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPodTemplate(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPodTemplateCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -34619,7 +33711,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicationControllerCall(String name, String namespace, V1ReplicationController body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -34661,7 +33753,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicationControllerValidateBeforeCall(String name, String namespace, V1ReplicationController body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -34680,14 +33772,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicationControllerValidateB throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicationController(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicationControllerCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -34771,7 +33859,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicationControllerScaleCall(String name, String namespace, V1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -34813,7 +33901,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicationControllerScaleValidateBeforeCall(String name, String namespace, V1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -34832,14 +33920,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicationControllerScaleVali throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicationControllerScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicationControllerScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -34923,7 +34007,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicationControllerStatusCall(String name, String namespace, V1ReplicationController body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -34965,7 +34049,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicationControllerStatusValidateBeforeCall(String name, String namespace, V1ReplicationController body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -34984,14 +34068,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicationControllerStatusVal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicationControllerStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicationControllerStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -35075,7 +34155,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedResourceQuotaCall(String name, String namespace, V1ResourceQuota body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -35117,7 +34197,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedResourceQuotaValidateBeforeCall(String name, String namespace, V1ResourceQuota body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -35136,14 +34216,10 @@ private com.squareup.okhttp.Call replaceNamespacedResourceQuotaValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedResourceQuota(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedResourceQuotaCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -35227,7 +34303,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedResourceQuotaStatusCall(String name, String namespace, V1ResourceQuota body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -35269,7 +34345,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedResourceQuotaStatusValidateBeforeCall(String name, String namespace, V1ResourceQuota body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -35288,14 +34364,10 @@ private com.squareup.okhttp.Call replaceNamespacedResourceQuotaStatusValidateBef throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedResourceQuotaStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedResourceQuotaStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -35379,7 +34451,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedSecretCall(String name, String namespace, V1Secret body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/secrets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -35421,7 +34493,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedSecretValidateBeforeCall(String name, String namespace, V1Secret body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -35440,14 +34512,10 @@ private com.squareup.okhttp.Call replaceNamespacedSecretValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedSecret(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedSecretCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -35531,7 +34599,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedServiceCall(String name, String namespace, V1Service body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -35573,7 +34641,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedServiceValidateBeforeCall(String name, String namespace, V1Service body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -35592,14 +34660,10 @@ private com.squareup.okhttp.Call replaceNamespacedServiceValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedService(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedServiceCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -35683,7 +34747,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedServiceAccountCall(String name, String namespace, V1ServiceAccount body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/serviceaccounts/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -35725,7 +34789,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedServiceAccountValidateBeforeCall(String name, String namespace, V1ServiceAccount body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -35744,14 +34808,10 @@ private com.squareup.okhttp.Call replaceNamespacedServiceAccountValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedServiceAccount(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedServiceAccountCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -35835,7 +34895,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedServiceStatusCall(String name, String namespace, V1Service body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/namespaces/{namespace}/services/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -35877,7 +34937,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedServiceStatusValidateBeforeCall(String name, String namespace, V1Service body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -35896,14 +34956,10 @@ private com.squareup.okhttp.Call replaceNamespacedServiceStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedServiceStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedServiceStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -35986,7 +35042,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNodeCall(String name, V1Node body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -36027,7 +35083,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNodeValidateBeforeCall(String name, V1Node body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -36041,14 +35097,10 @@ private com.squareup.okhttp.Call replaceNodeValidateBeforeCall(String name, V1No throw new ApiException("Missing the required parameter 'body' when calling replaceNode(Async)"); } - + com.squareup.okhttp.Call call = replaceNodeCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -36128,7 +35180,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNodeStatusCall(String name, V1Node body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/nodes/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -36169,7 +35221,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNodeStatusValidateBeforeCall(String name, V1Node body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -36183,14 +35235,10 @@ private com.squareup.okhttp.Call replaceNodeStatusValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'body' when calling replaceNodeStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNodeStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -36270,7 +35318,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replacePersistentVolumeCall(String name, V1PersistentVolume body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -36311,7 +35359,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replacePersistentVolumeValidateBeforeCall(String name, V1PersistentVolume body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -36325,14 +35373,10 @@ private com.squareup.okhttp.Call replacePersistentVolumeValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling replacePersistentVolume(Async)"); } - + com.squareup.okhttp.Call call = replacePersistentVolumeCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -36412,7 +35456,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replacePersistentVolumeStatusCall(String name, V1PersistentVolume body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/api/v1/persistentvolumes/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -36453,7 +35497,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replacePersistentVolumeStatusValidateBeforeCall(String name, V1PersistentVolume body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -36467,14 +35511,10 @@ private com.squareup.okhttp.Call replacePersistentVolumeStatusValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling replacePersistentVolumeStatus(Async)"); } - + com.squareup.okhttp.Call call = replacePersistentVolumeStatusCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/CustomObjectsApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/CustomObjectsApi.java index 5d41f3c67b..d557539efc 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/CustomObjectsApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/CustomObjectsApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -68,7 +68,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createClusterCustomObjectCall(String group, String version, String plural, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/{plural}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createClusterCustomObjectValidateBeforeCall(String group, String version, String plural, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -135,14 +135,10 @@ private com.squareup.okhttp.Call createClusterCustomObjectValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling createClusterCustomObject(Async)"); } - + com.squareup.okhttp.Call call = createClusterCustomObjectCall(group, version, plural, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -231,7 +227,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedCustomObjectCall(String group, String version, String namespace, String plural, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/namespaces/{namespace}/{plural}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -275,7 +271,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedCustomObjectValidateBeforeCall(String group, String version, String namespace, String plural, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -304,14 +300,10 @@ private com.squareup.okhttp.Call createNamespacedCustomObjectValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling createNamespacedCustomObject(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedCustomObjectCall(group, version, namespace, plural, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -405,7 +397,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteClusterCustomObjectCall(String group, String version, String plural, String name, V1DeleteOptions body, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/{plural}/{name}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -453,7 +445,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteClusterCustomObjectValidateBeforeCall(String group, String version, String plural, String name, V1DeleteOptions body, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -482,14 +474,10 @@ private com.squareup.okhttp.Call deleteClusterCustomObjectValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling deleteClusterCustomObject(Async)"); } - + com.squareup.okhttp.Call call = deleteClusterCustomObjectCall(group, version, plural, name, body, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -590,7 +578,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedCustomObjectCall(String group, String version, String namespace, String plural, String name, V1DeleteOptions body, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -639,7 +627,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedCustomObjectValidateBeforeCall(String group, String version, String namespace, String plural, String name, V1DeleteOptions body, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -673,14 +661,10 @@ private com.squareup.okhttp.Call deleteNamespacedCustomObjectValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedCustomObject(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedCustomObjectCall(group, version, namespace, plural, name, body, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -779,7 +763,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getClusterCustomObjectCall(String group, String version, String plural, String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/{plural}/{name}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -821,7 +805,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getClusterCustomObjectValidateBeforeCall(String group, String version, String plural, String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -845,14 +829,10 @@ private com.squareup.okhttp.Call getClusterCustomObjectValidateBeforeCall(String throw new ApiException("Missing the required parameter 'name' when calling getClusterCustomObject(Async)"); } - + com.squareup.okhttp.Call call = getClusterCustomObjectCall(group, version, plural, name, progressListener, progressRequestListener); return call; - - - - } /** @@ -937,7 +917,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getNamespacedCustomObjectCall(String group, String version, String namespace, String plural, String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -980,7 +960,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getNamespacedCustomObjectValidateBeforeCall(String group, String version, String namespace, String plural, String name, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1009,14 +989,10 @@ private com.squareup.okhttp.Call getNamespacedCustomObjectValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'name' when calling getNamespacedCustomObject(Async)"); } - + com.squareup.okhttp.Call call = getNamespacedCustomObjectCall(group, version, namespace, plural, name, progressListener, progressRequestListener); return call; - - - - } /** @@ -1106,7 +1082,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listClusterCustomObjectCall(String group, String version, String plural, String pretty, String labelSelector, String resourceVersion, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/{plural}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -1155,7 +1131,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listClusterCustomObjectValidateBeforeCall(String group, String version, String plural, String pretty, String labelSelector, String resourceVersion, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1174,14 +1150,10 @@ private com.squareup.okhttp.Call listClusterCustomObjectValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'plural' when calling listClusterCustomObject(Async)"); } - + com.squareup.okhttp.Call call = listClusterCustomObjectCall(group, version, plural, pretty, labelSelector, resourceVersion, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1278,7 +1250,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedCustomObjectCall(String group, String version, String namespace, String plural, String pretty, String labelSelector, String resourceVersion, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/namespaces/{namespace}/{plural}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -1328,7 +1300,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedCustomObjectValidateBeforeCall(String group, String version, String namespace, String plural, String pretty, String labelSelector, String resourceVersion, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1352,14 +1324,10 @@ private com.squareup.okhttp.Call listNamespacedCustomObjectValidateBeforeCall(St throw new ApiException("Missing the required parameter 'plural' when calling listNamespacedCustomObject(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedCustomObjectCall(group, version, namespace, plural, pretty, labelSelector, resourceVersion, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1442,6 +1410,340 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don apiClient.executeAsync(call, localVarReturnType, callback); return call; } + /** + * Build call for patchClusterCustomObject + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param plural the custom object's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @param progressListener Progress listener + * @param progressRequestListener Progress request listener + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + */ + public com.squareup.okhttp.Call patchClusterCustomObjectCall(String group, String version, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + Object localVarPostBody = body; + + // create path and map variables + String localVarPath = "/apis/{group}/{version}/{plural}/{name}" + .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) + .replaceAll("\\{" + "version" + "\\}", apiClient.escapeString(version.toString())) + .replaceAll("\\{" + "plural" + "\\}", apiClient.escapeString(plural.toString())) + .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + + Map localVarHeaderParams = new HashMap(); + + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); + + final String[] localVarContentTypes = { + "application/merge-patch+json" + }; + final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + localVarHeaderParams.put("Content-Type", localVarContentType); + + if(progressListener != null) { + apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { + @Override + public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { + com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); + return originalResponse.newBuilder() + .body(new ProgressResponseBody(originalResponse.body(), progressListener)) + .build(); + } + }); + } + + String[] localVarAuthNames = new String[] { "BearerToken" }; + return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); + } + + @SuppressWarnings("rawtypes") + private com.squareup.okhttp.Call patchClusterCustomObjectValidateBeforeCall(String group, String version, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + + // verify the required parameter 'group' is set + if (group == null) { + throw new ApiException("Missing the required parameter 'group' when calling patchClusterCustomObject(Async)"); + } + + // verify the required parameter 'version' is set + if (version == null) { + throw new ApiException("Missing the required parameter 'version' when calling patchClusterCustomObject(Async)"); + } + + // verify the required parameter 'plural' is set + if (plural == null) { + throw new ApiException("Missing the required parameter 'plural' when calling patchClusterCustomObject(Async)"); + } + + // verify the required parameter 'name' is set + if (name == null) { + throw new ApiException("Missing the required parameter 'name' when calling patchClusterCustomObject(Async)"); + } + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling patchClusterCustomObject(Async)"); + } + + + com.squareup.okhttp.Call call = patchClusterCustomObjectCall(group, version, plural, name, body, progressListener, progressRequestListener); + return call; + + } + + /** + * + * patch the specified cluster scoped custom object + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param plural the custom object's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @return Object + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public Object patchClusterCustomObject(String group, String version, String plural, String name, Object body) throws ApiException { + ApiResponse resp = patchClusterCustomObjectWithHttpInfo(group, version, plural, name, body); + return resp.getData(); + } + + /** + * + * patch the specified cluster scoped custom object + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param plural the custom object's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @return ApiResponse<Object> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public ApiResponse patchClusterCustomObjectWithHttpInfo(String group, String version, String plural, String name, Object body) throws ApiException { + com.squareup.okhttp.Call call = patchClusterCustomObjectValidateBeforeCall(group, version, plural, name, body, null, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return apiClient.execute(call, localVarReturnType); + } + + /** + * (asynchronously) + * patch the specified cluster scoped custom object + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param plural the custom object's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @param callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + */ + public com.squareup.okhttp.Call patchClusterCustomObjectAsync(String group, String version, String plural, String name, Object body, final ApiCallback callback) throws ApiException { + + ProgressResponseBody.ProgressListener progressListener = null; + ProgressRequestBody.ProgressRequestListener progressRequestListener = null; + + if (callback != null) { + progressListener = new ProgressResponseBody.ProgressListener() { + @Override + public void update(long bytesRead, long contentLength, boolean done) { + callback.onDownloadProgress(bytesRead, contentLength, done); + } + }; + + progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { + @Override + public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { + callback.onUploadProgress(bytesWritten, contentLength, done); + } + }; + } + + com.squareup.okhttp.Call call = patchClusterCustomObjectValidateBeforeCall(group, version, plural, name, body, progressListener, progressRequestListener); + Type localVarReturnType = new TypeToken(){}.getType(); + apiClient.executeAsync(call, localVarReturnType, callback); + return call; + } + /** + * Build call for patchNamespacedCustomObject + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param namespace The custom resource's namespace (required) + * @param plural the custom resource's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @param progressListener Progress listener + * @param progressRequestListener Progress request listener + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + */ + public com.squareup.okhttp.Call patchNamespacedCustomObjectCall(String group, String version, String namespace, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + Object localVarPostBody = body; + + // create path and map variables + String localVarPath = "/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}" + .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) + .replaceAll("\\{" + "version" + "\\}", apiClient.escapeString(version.toString())) + .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())) + .replaceAll("\\{" + "plural" + "\\}", apiClient.escapeString(plural.toString())) + .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + + Map localVarHeaderParams = new HashMap(); + + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); + + final String[] localVarContentTypes = { + "application/merge-patch+json" + }; + final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + localVarHeaderParams.put("Content-Type", localVarContentType); + + if(progressListener != null) { + apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { + @Override + public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { + com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); + return originalResponse.newBuilder() + .body(new ProgressResponseBody(originalResponse.body(), progressListener)) + .build(); + } + }); + } + + String[] localVarAuthNames = new String[] { "BearerToken" }; + return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); + } + + @SuppressWarnings("rawtypes") + private com.squareup.okhttp.Call patchNamespacedCustomObjectValidateBeforeCall(String group, String version, String namespace, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { + + // verify the required parameter 'group' is set + if (group == null) { + throw new ApiException("Missing the required parameter 'group' when calling patchNamespacedCustomObject(Async)"); + } + + // verify the required parameter 'version' is set + if (version == null) { + throw new ApiException("Missing the required parameter 'version' when calling patchNamespacedCustomObject(Async)"); + } + + // verify the required parameter 'namespace' is set + if (namespace == null) { + throw new ApiException("Missing the required parameter 'namespace' when calling patchNamespacedCustomObject(Async)"); + } + + // verify the required parameter 'plural' is set + if (plural == null) { + throw new ApiException("Missing the required parameter 'plural' when calling patchNamespacedCustomObject(Async)"); + } + + // verify the required parameter 'name' is set + if (name == null) { + throw new ApiException("Missing the required parameter 'name' when calling patchNamespacedCustomObject(Async)"); + } + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedCustomObject(Async)"); + } + + + com.squareup.okhttp.Call call = patchNamespacedCustomObjectCall(group, version, namespace, plural, name, body, progressListener, progressRequestListener); + return call; + + } + + /** + * + * patch the specified namespace scoped custom object + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param namespace The custom resource's namespace (required) + * @param plural the custom resource's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @return Object + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public Object patchNamespacedCustomObject(String group, String version, String namespace, String plural, String name, Object body) throws ApiException { + ApiResponse resp = patchNamespacedCustomObjectWithHttpInfo(group, version, namespace, plural, name, body); + return resp.getData(); + } + + /** + * + * patch the specified namespace scoped custom object + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param namespace The custom resource's namespace (required) + * @param plural the custom resource's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @return ApiResponse<Object> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + */ + public ApiResponse patchNamespacedCustomObjectWithHttpInfo(String group, String version, String namespace, String plural, String name, Object body) throws ApiException { + com.squareup.okhttp.Call call = patchNamespacedCustomObjectValidateBeforeCall(group, version, namespace, plural, name, body, null, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return apiClient.execute(call, localVarReturnType); + } + + /** + * (asynchronously) + * patch the specified namespace scoped custom object + * @param group the custom resource's group (required) + * @param version the custom resource's version (required) + * @param namespace The custom resource's namespace (required) + * @param plural the custom resource's plural name. For TPRs this would be lowercase plural kind. (required) + * @param name the custom object's name (required) + * @param body The JSON schema of the Resource to patch. (required) + * @param callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + */ + public com.squareup.okhttp.Call patchNamespacedCustomObjectAsync(String group, String version, String namespace, String plural, String name, Object body, final ApiCallback callback) throws ApiException { + + ProgressResponseBody.ProgressListener progressListener = null; + ProgressRequestBody.ProgressRequestListener progressRequestListener = null; + + if (callback != null) { + progressListener = new ProgressResponseBody.ProgressListener() { + @Override + public void update(long bytesRead, long contentLength, boolean done) { + callback.onDownloadProgress(bytesRead, contentLength, done); + } + }; + + progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { + @Override + public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { + callback.onUploadProgress(bytesWritten, contentLength, done); + } + }; + } + + com.squareup.okhttp.Call call = patchNamespacedCustomObjectValidateBeforeCall(group, version, namespace, plural, name, body, progressListener, progressRequestListener); + Type localVarReturnType = new TypeToken(){}.getType(); + apiClient.executeAsync(call, localVarReturnType, callback); + return call; + } /** * Build call for replaceClusterCustomObject * @param group the custom resource's group (required) @@ -1456,7 +1758,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceClusterCustomObjectCall(String group, String version, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/{plural}/{name}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -1498,7 +1800,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceClusterCustomObjectValidateBeforeCall(String group, String version, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1527,14 +1829,10 @@ private com.squareup.okhttp.Call replaceClusterCustomObjectValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceClusterCustomObject(Async)"); } - + com.squareup.okhttp.Call call = replaceClusterCustomObjectCall(group, version, plural, name, body, progressListener, progressRequestListener); return call; - - - - } /** @@ -1623,7 +1921,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedCustomObjectCall(String group, String version, String namespace, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}" .replaceAll("\\{" + "group" + "\\}", apiClient.escapeString(group.toString())) @@ -1666,7 +1964,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedCustomObjectValidateBeforeCall(String group, String version, String namespace, String plural, String name, Object body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1700,14 +1998,10 @@ private com.squareup.okhttp.Call replaceNamespacedCustomObjectValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedCustomObject(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedCustomObjectCall(group, version, namespace, plural, name, body, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsApi.java index 53690ffb19..548ddce5ad 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsV1beta1Api.java index a35a3ca6d8..6e91574d0f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/ExtensionsV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -82,7 +82,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedDaemonSetCall(String namespace, V1beta1DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -123,7 +123,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedDaemonSetValidateBeforeCall(String namespace, V1beta1DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -137,14 +137,10 @@ private com.squareup.okhttp.Call createNamespacedDaemonSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling createNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedDaemonSetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -224,7 +220,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedDeploymentCall(String namespace, ExtensionsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -265,7 +261,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedDeploymentValidateBeforeCall(String namespace, ExtensionsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -279,14 +275,10 @@ private com.squareup.okhttp.Call createNamespacedDeploymentValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling createNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedDeploymentCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -367,7 +359,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedDeploymentRollbackCall(String name, String namespace, ExtensionsV1beta1DeploymentRollback body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -409,7 +401,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedDeploymentRollbackValidateBeforeCall(String name, String namespace, ExtensionsV1beta1DeploymentRollback body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -428,14 +420,10 @@ private com.squareup.okhttp.Call createNamespacedDeploymentRollbackValidateBefor throw new ApiException("Missing the required parameter 'body' when calling createNamespacedDeploymentRollback(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedDeploymentRollbackCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -518,7 +506,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedIngressCall(String namespace, V1beta1Ingress body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -559,7 +547,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedIngressValidateBeforeCall(String namespace, V1beta1Ingress body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -573,14 +561,10 @@ private com.squareup.okhttp.Call createNamespacedIngressValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling createNamespacedIngress(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedIngressCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -660,7 +644,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedNetworkPolicyCall(String namespace, V1beta1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -701,7 +685,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedNetworkPolicyValidateBeforeCall(String namespace, V1beta1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -715,14 +699,10 @@ private com.squareup.okhttp.Call createNamespacedNetworkPolicyValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling createNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedNetworkPolicyCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -802,7 +782,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedReplicaSetCall(String namespace, V1beta1ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -843,7 +823,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedReplicaSetValidateBeforeCall(String namespace, V1beta1ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -857,14 +837,10 @@ private com.squareup.okhttp.Call createNamespacedReplicaSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling createNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedReplicaSetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -943,7 +919,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createPodSecurityPolicyCall(V1beta1PodSecurityPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/podsecuritypolicies"; @@ -983,7 +959,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createPodSecurityPolicyValidateBeforeCall(V1beta1PodSecurityPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -992,14 +968,10 @@ private com.squareup.okhttp.Call createPodSecurityPolicyValidateBeforeCall(V1bet throw new ApiException("Missing the required parameter 'body' when calling createPodSecurityPolicy(Async)"); } - + com.squareup.okhttp.Call call = createPodSecurityPolicyCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1083,7 +1055,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedDaemonSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1140,7 +1112,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedDaemonSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1149,14 +1121,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedDaemonSetValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedDaemonSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1264,7 +1232,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1321,7 +1289,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1330,14 +1298,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedDeploymentValidateBef throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedDeploymentCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1445,7 +1409,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedIngressCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1502,7 +1466,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedIngressValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1511,14 +1475,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedIngressValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedIngress(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedIngressCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1626,7 +1586,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedNetworkPolicyCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1683,7 +1643,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedNetworkPolicyValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1692,14 +1652,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedNetworkPolicyValidate throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedNetworkPolicyCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1807,7 +1763,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedReplicaSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1864,7 +1820,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedReplicaSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1873,14 +1829,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedReplicaSetValidateBef throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedReplicaSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1987,7 +1939,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionPodSecurityPolicyCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/podsecuritypolicies"; @@ -2043,18 +1995,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionPodSecurityPolicyValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionPodSecurityPolicyCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2156,7 +2104,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedDaemonSetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2204,7 +2152,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedDaemonSetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2223,14 +2171,10 @@ private com.squareup.okhttp.Call deleteNamespacedDaemonSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedDaemonSetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2326,7 +2270,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedDeploymentCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2374,7 +2318,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedDeploymentValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2393,14 +2337,10 @@ private com.squareup.okhttp.Call deleteNamespacedDeploymentValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedDeploymentCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2496,7 +2436,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedIngressCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2544,7 +2484,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedIngressValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2563,14 +2503,10 @@ private com.squareup.okhttp.Call deleteNamespacedIngressValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedIngress(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedIngressCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2666,7 +2602,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedNetworkPolicyCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2714,7 +2650,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2733,14 +2669,10 @@ private com.squareup.okhttp.Call deleteNamespacedNetworkPolicyValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedNetworkPolicyCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -2836,7 +2768,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedReplicaSetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -2884,7 +2816,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedReplicaSetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2903,14 +2835,10 @@ private com.squareup.okhttp.Call deleteNamespacedReplicaSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedReplicaSetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -3005,7 +2933,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deletePodSecurityPolicyCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/podsecuritypolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3052,7 +2980,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deletePodSecurityPolicyValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3066,14 +2994,10 @@ private com.squareup.okhttp.Call deletePodSecurityPolicyValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling deletePodSecurityPolicy(Async)"); } - + com.squareup.okhttp.Call call = deletePodSecurityPolicyCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -3159,7 +3083,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/"; @@ -3197,18 +3121,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -3285,7 +3205,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listDaemonSetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/daemonsets"; @@ -3341,18 +3261,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listDaemonSetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listDaemonSetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3456,7 +3372,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listDeploymentForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/deployments"; @@ -3512,18 +3428,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listDeploymentForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listDeploymentForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3627,7 +3539,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listIngressForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/ingresses"; @@ -3683,18 +3595,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listIngressForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listIngressForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3799,7 +3707,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedDaemonSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -3856,7 +3764,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedDaemonSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3865,14 +3773,10 @@ private com.squareup.okhttp.Call listNamespacedDaemonSetValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedDaemonSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3980,7 +3884,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedDeploymentCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -4037,7 +3941,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedDeploymentValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4046,14 +3950,10 @@ private com.squareup.okhttp.Call listNamespacedDeploymentValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedDeploymentCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4161,7 +4061,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedIngressCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -4218,7 +4118,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedIngressValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4227,14 +4127,10 @@ private com.squareup.okhttp.Call listNamespacedIngressValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedIngress(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedIngressCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4342,7 +4238,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedNetworkPolicyCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -4399,7 +4295,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedNetworkPolicyValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4408,14 +4304,10 @@ private com.squareup.okhttp.Call listNamespacedNetworkPolicyValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedNetworkPolicyCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4523,7 +4415,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedReplicaSetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -4580,7 +4472,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedReplicaSetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4589,14 +4481,10 @@ private com.squareup.okhttp.Call listNamespacedReplicaSetValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedReplicaSetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4703,7 +4591,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNetworkPolicyForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/networkpolicies"; @@ -4759,18 +4647,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNetworkPolicyForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listNetworkPolicyForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -4874,7 +4758,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPodSecurityPolicyCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/podsecuritypolicies"; @@ -4930,18 +4814,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPodSecurityPolicyValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPodSecurityPolicyCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -5045,7 +4925,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listReplicaSetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/replicasets"; @@ -5101,18 +4981,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listReplicaSetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listReplicaSetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -5211,7 +5087,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDaemonSetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5253,7 +5129,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDaemonSetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5272,14 +5148,10 @@ private com.squareup.okhttp.Call patchNamespacedDaemonSetValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDaemonSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5363,7 +5235,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDaemonSetStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5405,7 +5277,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDaemonSetStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5424,14 +5296,10 @@ private com.squareup.okhttp.Call patchNamespacedDaemonSetStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDaemonSetStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDaemonSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5515,7 +5383,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5557,7 +5425,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5576,14 +5444,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5667,7 +5531,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5709,7 +5573,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5728,14 +5592,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentScaleValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5819,7 +5679,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedDeploymentStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -5861,7 +5721,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -5880,14 +5740,10 @@ private com.squareup.okhttp.Call patchNamespacedDeploymentStatusValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedDeploymentStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -5971,7 +5827,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedIngressCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6013,7 +5869,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedIngressValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6032,14 +5888,10 @@ private com.squareup.okhttp.Call patchNamespacedIngressValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedIngress(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedIngressCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6123,7 +5975,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedIngressStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6165,7 +6017,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedIngressStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6184,14 +6036,10 @@ private com.squareup.okhttp.Call patchNamespacedIngressStatusValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedIngressStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedIngressStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6275,7 +6123,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedNetworkPolicyCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6317,7 +6165,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6336,14 +6184,10 @@ private com.squareup.okhttp.Call patchNamespacedNetworkPolicyValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedNetworkPolicyCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6427,7 +6271,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicaSetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6469,7 +6313,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicaSetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6488,14 +6332,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicaSetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicaSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6579,7 +6419,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicaSetScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6621,7 +6461,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicaSetScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6640,14 +6480,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicaSetScaleValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicaSetScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicaSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6731,7 +6567,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicaSetStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6773,7 +6609,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicaSetStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6792,14 +6628,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicaSetStatusValidateBeforeCa throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicaSetStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicaSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -6883,7 +6715,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedReplicationControllerDummyScaleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -6925,7 +6757,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedReplicationControllerDummyScaleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -6944,14 +6776,10 @@ private com.squareup.okhttp.Call patchNamespacedReplicationControllerDummyScaleV throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedReplicationControllerDummyScale(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedReplicationControllerDummyScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7034,7 +6862,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchPodSecurityPolicyCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/podsecuritypolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -7075,7 +6903,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchPodSecurityPolicyValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7089,14 +6917,10 @@ private com.squareup.okhttp.Call patchPodSecurityPolicyValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling patchPodSecurityPolicy(Async)"); } - + com.squareup.okhttp.Call call = patchPodSecurityPolicyCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7178,7 +7002,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDaemonSetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7224,7 +7048,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDaemonSetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7238,14 +7062,10 @@ private com.squareup.okhttp.Call readNamespacedDaemonSetValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDaemonSetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -7331,7 +7151,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDaemonSetStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7373,7 +7193,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDaemonSetStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7387,14 +7207,10 @@ private com.squareup.okhttp.Call readNamespacedDaemonSetStatusValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDaemonSetStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDaemonSetStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7476,7 +7292,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7522,7 +7338,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7536,14 +7352,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -7629,7 +7441,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7671,7 +7483,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7685,14 +7497,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentScaleValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7772,7 +7580,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedDeploymentStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7814,7 +7622,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7828,14 +7636,10 @@ private com.squareup.okhttp.Call readNamespacedDeploymentStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedDeploymentStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -7917,7 +7721,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedIngressCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -7963,7 +7767,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedIngressValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -7977,14 +7781,10 @@ private com.squareup.okhttp.Call readNamespacedIngressValidateBeforeCall(String throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedIngress(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedIngressCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -8070,7 +7870,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedIngressStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8112,7 +7912,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedIngressStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8126,14 +7926,10 @@ private com.squareup.okhttp.Call readNamespacedIngressStatusValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedIngressStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedIngressStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8215,7 +8011,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedNetworkPolicyCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8261,7 +8057,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8275,14 +8071,10 @@ private com.squareup.okhttp.Call readNamespacedNetworkPolicyValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedNetworkPolicyCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -8370,7 +8162,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicaSetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8416,7 +8208,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicaSetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8430,14 +8222,10 @@ private com.squareup.okhttp.Call readNamespacedReplicaSetValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicaSetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -8523,7 +8311,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicaSetScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8565,7 +8353,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicaSetScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8579,14 +8367,10 @@ private com.squareup.okhttp.Call readNamespacedReplicaSetScaleValidateBeforeCall throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicaSetScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicaSetScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8666,7 +8450,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicaSetStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8708,7 +8492,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicaSetStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8722,14 +8506,10 @@ private com.squareup.okhttp.Call readNamespacedReplicaSetStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicaSetStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicaSetStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8809,7 +8589,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedReplicationControllerDummyScaleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -8851,7 +8631,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedReplicationControllerDummyScaleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -8865,14 +8645,10 @@ private com.squareup.okhttp.Call readNamespacedReplicationControllerDummyScaleVa throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedReplicationControllerDummyScale(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedReplicationControllerDummyScaleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -8953,7 +8729,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readPodSecurityPolicyCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/podsecuritypolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -8998,7 +8774,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readPodSecurityPolicyValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9007,14 +8783,10 @@ private com.squareup.okhttp.Call readPodSecurityPolicyValidateBeforeCall(String throw new ApiException("Missing the required parameter 'name' when calling readPodSecurityPolicy(Async)"); } - + com.squareup.okhttp.Call call = readPodSecurityPolicyCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -9098,7 +8870,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDaemonSetCall(String name, String namespace, V1beta1DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9140,7 +8912,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDaemonSetValidateBeforeCall(String name, String namespace, V1beta1DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9159,14 +8931,10 @@ private com.squareup.okhttp.Call replaceNamespacedDaemonSetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDaemonSet(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDaemonSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9250,7 +9018,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDaemonSetStatusCall(String name, String namespace, V1beta1DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9292,7 +9060,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDaemonSetStatusValidateBeforeCall(String name, String namespace, V1beta1DaemonSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9311,14 +9079,10 @@ private com.squareup.okhttp.Call replaceNamespacedDaemonSetStatusValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDaemonSetStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDaemonSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9402,7 +9166,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentCall(String name, String namespace, ExtensionsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9444,7 +9208,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentValidateBeforeCall(String name, String namespace, ExtensionsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9463,14 +9227,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeployment(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9554,7 +9314,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentScaleCall(String name, String namespace, ExtensionsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9596,7 +9356,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentScaleValidateBeforeCall(String name, String namespace, ExtensionsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9615,14 +9375,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentScaleValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeploymentScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9706,7 +9462,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedDeploymentStatusCall(String name, String namespace, ExtensionsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9748,7 +9504,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedDeploymentStatusValidateBeforeCall(String name, String namespace, ExtensionsV1beta1Deployment body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9767,14 +9523,10 @@ private com.squareup.okhttp.Call replaceNamespacedDeploymentStatusValidateBefore throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedDeploymentStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedDeploymentStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -9858,7 +9610,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedIngressCall(String name, String namespace, V1beta1Ingress body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -9900,7 +9652,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedIngressValidateBeforeCall(String name, String namespace, V1beta1Ingress body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -9919,14 +9671,10 @@ private com.squareup.okhttp.Call replaceNamespacedIngressValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedIngress(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedIngressCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -10010,7 +9758,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedIngressStatusCall(String name, String namespace, V1beta1Ingress body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -10052,7 +9800,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedIngressStatusValidateBeforeCall(String name, String namespace, V1beta1Ingress body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10071,14 +9819,10 @@ private com.squareup.okhttp.Call replaceNamespacedIngressStatusValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedIngressStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedIngressStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -10162,7 +9906,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedNetworkPolicyCall(String name, String namespace, V1beta1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -10204,7 +9948,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, V1beta1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10223,14 +9967,10 @@ private com.squareup.okhttp.Call replaceNamespacedNetworkPolicyValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedNetworkPolicyCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -10314,7 +10054,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicaSetCall(String name, String namespace, V1beta1ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -10356,7 +10096,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicaSetValidateBeforeCall(String name, String namespace, V1beta1ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10375,14 +10115,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicaSetValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicaSet(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicaSetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -10466,7 +10202,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicaSetScaleCall(String name, String namespace, ExtensionsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -10508,7 +10244,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicaSetScaleValidateBeforeCall(String name, String namespace, ExtensionsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10527,14 +10263,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicaSetScaleValidateBeforeC throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicaSetScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicaSetScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -10618,7 +10350,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicaSetStatusCall(String name, String namespace, V1beta1ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -10660,7 +10392,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicaSetStatusValidateBeforeCall(String name, String namespace, V1beta1ReplicaSet body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10679,14 +10411,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicaSetStatusValidateBefore throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicaSetStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicaSetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -10770,7 +10498,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedReplicationControllerDummyScaleCall(String name, String namespace, ExtensionsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -10812,7 +10540,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedReplicationControllerDummyScaleValidateBeforeCall(String name, String namespace, ExtensionsV1beta1Scale body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10831,14 +10559,10 @@ private com.squareup.okhttp.Call replaceNamespacedReplicationControllerDummyScal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedReplicationControllerDummyScale(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedReplicationControllerDummyScaleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -10921,7 +10645,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replacePodSecurityPolicyCall(String name, V1beta1PodSecurityPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/extensions/v1beta1/podsecuritypolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -10962,7 +10686,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replacePodSecurityPolicyValidateBeforeCall(String name, V1beta1PodSecurityPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -10976,14 +10700,10 @@ private com.squareup.okhttp.Call replacePodSecurityPolicyValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling replacePodSecurityPolicy(Async)"); } - + com.squareup.okhttp.Call call = replacePodSecurityPolicyCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/LogsApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/LogsApi.java index 1b14622c92..ad7f81e9d0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/LogsApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/LogsApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call logFileHandlerCall(String logpath, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/logs/{logpath}" .replaceAll("\\{" + "logpath" + "\\}", apiClient.escapeString(logpath.toString())); @@ -102,7 +102,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call logFileHandlerValidateBeforeCall(String logpath, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -111,14 +111,10 @@ private com.squareup.okhttp.Call logFileHandlerValidateBeforeCall(String logpath throw new ApiException("Missing the required parameter 'logpath' when calling logFileHandler(Async)"); } - + com.squareup.okhttp.Call call = logFileHandlerCall(logpath, progressListener, progressRequestListener); return call; - - - - } /** @@ -185,7 +181,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call logFileListHandlerCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/logs/"; @@ -223,18 +219,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call logFileListHandlerValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = logFileListHandlerCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingApi.java index 252dffcb2c..497e16194c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingV1Api.java index eec3f9c964..c4f218a48a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/NetworkingV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedNetworkPolicyCall(String namespace, V1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedNetworkPolicyValidateBeforeCall(String namespace, V1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedNetworkPolicyValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling createNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedNetworkPolicyCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedNetworkPolicyCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedNetworkPolicyValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedNetworkPolicyValidate throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedNetworkPolicyCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedNetworkPolicyCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedNetworkPolicyValidateBeforeCall throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedNetworkPolicyCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -687,7 +671,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedNetworkPolicyCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -744,7 +728,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedNetworkPolicyValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -753,14 +737,10 @@ private com.squareup.okhttp.Call listNamespacedNetworkPolicyValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedNetworkPolicyCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -867,7 +847,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNetworkPolicyForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/networkpolicies"; @@ -923,18 +903,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNetworkPolicyForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listNetworkPolicyForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedNetworkPolicyCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedNetworkPolicyValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedNetworkPolicyCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1186,7 +1158,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedNetworkPolicyCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1232,7 +1204,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call readNamespacedNetworkPolicyValidateBeforeCall(S throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedNetworkPolicyCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1340,7 +1308,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedNetworkPolicyCall(String name, String namespace, V1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1382,7 +1350,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedNetworkPolicyValidateBeforeCall(String name, String namespace, V1NetworkPolicy body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1401,14 +1369,10 @@ private com.squareup.okhttp.Call replaceNamespacedNetworkPolicyValidateBeforeCal throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedNetworkPolicy(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedNetworkPolicyCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyApi.java index d56cb4a88a..519e9d86ab 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/policy/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyV1beta1Api.java index 477c38a8f4..c371307d4a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/PolicyV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedPodDisruptionBudgetCall(String namespace, V1beta1PodDisruptionBudget body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedPodDisruptionBudgetValidateBeforeCall(String namespace, V1beta1PodDisruptionBudget body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedPodDisruptionBudgetValidateBefo throw new ApiException("Missing the required parameter 'body' when calling createNamespacedPodDisruptionBudget(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedPodDisruptionBudgetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedPodDisruptionBudgetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedPodDisruptionBudgetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedPodDisruptionBudgetVa throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedPodDisruptionBudget(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedPodDisruptionBudgetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedPodDisruptionBudgetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedPodDisruptionBudgetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedPodDisruptionBudgetValidateBefo throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedPodDisruptionBudget(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedPodDisruptionBudgetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -687,7 +671,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedPodDisruptionBudgetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -744,7 +728,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedPodDisruptionBudgetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -753,14 +737,10 @@ private com.squareup.okhttp.Call listNamespacedPodDisruptionBudgetValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedPodDisruptionBudget(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedPodDisruptionBudgetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -867,7 +847,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPodDisruptionBudgetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/poddisruptionbudgets"; @@ -923,18 +903,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPodDisruptionBudgetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPodDisruptionBudgetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPodDisruptionBudgetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPodDisruptionBudgetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedPodDisruptionBudgetValidateBefor throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPodDisruptionBudget(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPodDisruptionBudgetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1185,7 +1157,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPodDisruptionBudgetStatusCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1227,7 +1199,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPodDisruptionBudgetStatusValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call patchNamespacedPodDisruptionBudgetStatusValidat throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPodDisruptionBudgetStatus(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPodDisruptionBudgetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1338,7 +1306,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPodDisruptionBudgetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1384,7 +1352,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPodDisruptionBudgetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1398,14 +1366,10 @@ private com.squareup.okhttp.Call readNamespacedPodDisruptionBudgetValidateBefore throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPodDisruptionBudget(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPodDisruptionBudgetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1491,7 +1455,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPodDisruptionBudgetStatusCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1533,7 +1497,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPodDisruptionBudgetStatusValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1547,14 +1511,10 @@ private com.squareup.okhttp.Call readNamespacedPodDisruptionBudgetStatusValidate throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPodDisruptionBudgetStatus(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPodDisruptionBudgetStatusCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1635,7 +1595,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPodDisruptionBudgetCall(String name, String namespace, V1beta1PodDisruptionBudget body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1677,7 +1637,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPodDisruptionBudgetValidateBeforeCall(String name, String namespace, V1beta1PodDisruptionBudget body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1696,14 +1656,10 @@ private com.squareup.okhttp.Call replaceNamespacedPodDisruptionBudgetValidateBef throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPodDisruptionBudget(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPodDisruptionBudgetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1787,7 +1743,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPodDisruptionBudgetStatusCall(String name, String namespace, V1beta1PodDisruptionBudget body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1829,7 +1785,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPodDisruptionBudgetStatusValidateBeforeCall(String name, String namespace, V1beta1PodDisruptionBudget body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1848,14 +1804,10 @@ private com.squareup.okhttp.Call replaceNamespacedPodDisruptionBudgetStatusValid throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPodDisruptionBudgetStatus(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPodDisruptionBudgetStatusCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationApi.java index 60edba4bd3..2568298f68 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1Api.java index 857cb96017..1328e2e209 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -75,7 +75,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createClusterRoleCall(V1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterroles"; @@ -115,7 +115,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createClusterRoleValidateBeforeCall(V1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -124,14 +124,10 @@ private com.squareup.okhttp.Call createClusterRoleValidateBeforeCall(V1ClusterRo throw new ApiException("Missing the required parameter 'body' when calling createClusterRole(Async)"); } - + com.squareup.okhttp.Call call = createClusterRoleCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -207,7 +203,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createClusterRoleBindingCall(V1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings"; @@ -247,7 +243,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createClusterRoleBindingValidateBeforeCall(V1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -256,14 +252,10 @@ private com.squareup.okhttp.Call createClusterRoleBindingValidateBeforeCall(V1Cl throw new ApiException("Missing the required parameter 'body' when calling createClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = createClusterRoleBindingCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -340,7 +332,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedRoleCall(String namespace, V1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -381,7 +373,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedRoleValidateBeforeCall(String namespace, V1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -395,14 +387,10 @@ private com.squareup.okhttp.Call createNamespacedRoleValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling createNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedRoleCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -482,7 +470,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedRoleBindingCall(String namespace, V1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -523,7 +511,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedRoleBindingValidateBeforeCall(String namespace, V1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -537,14 +525,10 @@ private com.squareup.okhttp.Call createNamespacedRoleBindingValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling createNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedRoleBindingCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -627,7 +611,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteClusterRoleCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -674,7 +658,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteClusterRoleValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -688,14 +672,10 @@ private com.squareup.okhttp.Call deleteClusterRoleValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'body' when calling deleteClusterRole(Async)"); } - + com.squareup.okhttp.Call call = deleteClusterRoleCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -787,7 +767,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteClusterRoleBindingCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -834,7 +814,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteClusterRoleBindingValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -848,14 +828,10 @@ private com.squareup.okhttp.Call deleteClusterRoleBindingValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling deleteClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteClusterRoleBindingCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -950,7 +926,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionClusterRoleCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterroles"; @@ -1006,18 +982,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionClusterRoleValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionClusterRoleCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1121,7 +1093,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionClusterRoleBindingCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings"; @@ -1177,18 +1149,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionClusterRoleBindingValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionClusterRoleBindingCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1293,7 +1261,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedRoleCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1350,7 +1318,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedRoleValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1359,14 +1327,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedRoleValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedRoleCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1474,7 +1438,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1531,7 +1495,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1540,14 +1504,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedRoleBindingCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1652,7 +1612,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedRoleCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1700,7 +1660,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedRoleValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1719,14 +1679,10 @@ private com.squareup.okhttp.Call deleteNamespacedRoleValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedRoleCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1822,7 +1778,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedRoleBindingCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1870,7 +1826,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedRoleBindingValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1889,14 +1845,10 @@ private com.squareup.okhttp.Call deleteNamespacedRoleBindingValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedRoleBindingCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1985,7 +1937,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/"; @@ -2023,18 +1975,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -2111,7 +2059,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listClusterRoleCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterroles"; @@ -2167,18 +2115,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listClusterRoleValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listClusterRoleCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2282,7 +2226,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listClusterRoleBindingCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings"; @@ -2338,18 +2282,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listClusterRoleBindingValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listClusterRoleBindingCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2454,7 +2394,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedRoleCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2511,7 +2451,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedRoleValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2520,14 +2460,10 @@ private com.squareup.okhttp.Call listNamespacedRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedRoleCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2635,7 +2571,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedRoleBindingCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2692,7 +2628,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedRoleBindingValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2701,14 +2637,10 @@ private com.squareup.okhttp.Call listNamespacedRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedRoleBindingCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2815,7 +2747,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listRoleBindingForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/rolebindings"; @@ -2871,18 +2803,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listRoleBindingForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listRoleBindingForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2986,7 +2914,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listRoleForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/roles"; @@ -3042,18 +2970,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listRoleForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listRoleForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3151,7 +3075,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchClusterRoleCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3192,7 +3116,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchClusterRoleValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3206,14 +3130,10 @@ private com.squareup.okhttp.Call patchClusterRoleValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling patchClusterRole(Async)"); } - + com.squareup.okhttp.Call call = patchClusterRoleCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3293,7 +3213,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchClusterRoleBindingCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3334,7 +3254,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchClusterRoleBindingValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3348,14 +3268,10 @@ private com.squareup.okhttp.Call patchClusterRoleBindingValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling patchClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = patchClusterRoleBindingCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3436,7 +3352,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedRoleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3478,7 +3394,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedRoleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3497,14 +3413,10 @@ private com.squareup.okhttp.Call patchNamespacedRoleValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedRoleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3588,7 +3500,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedRoleBindingCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3630,7 +3542,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedRoleBindingValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3649,14 +3561,10 @@ private com.squareup.okhttp.Call patchNamespacedRoleBindingValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedRoleBindingCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3738,7 +3646,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readClusterRoleCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3779,7 +3687,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readClusterRoleValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3788,14 +3696,10 @@ private com.squareup.okhttp.Call readClusterRoleValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'name' when calling readClusterRole(Async)"); } - + com.squareup.okhttp.Call call = readClusterRoleCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3871,7 +3775,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readClusterRoleBindingCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3912,7 +3816,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readClusterRoleBindingValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3921,14 +3825,10 @@ private com.squareup.okhttp.Call readClusterRoleBindingValidateBeforeCall(String throw new ApiException("Missing the required parameter 'name' when calling readClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = readClusterRoleBindingCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4005,7 +3905,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedRoleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4047,7 +3947,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedRoleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4061,14 +3961,10 @@ private com.squareup.okhttp.Call readNamespacedRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedRoleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4148,7 +4044,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedRoleBindingCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4190,7 +4086,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedRoleBindingValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4204,14 +4100,10 @@ private com.squareup.okhttp.Call readNamespacedRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedRoleBindingCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4291,7 +4183,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceClusterRoleCall(String name, V1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -4332,7 +4224,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceClusterRoleValidateBeforeCall(String name, V1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4346,14 +4238,10 @@ private com.squareup.okhttp.Call replaceClusterRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling replaceClusterRole(Async)"); } - + com.squareup.okhttp.Call call = replaceClusterRoleCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4433,7 +4321,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceClusterRoleBindingCall(String name, V1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -4474,7 +4362,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceClusterRoleBindingValidateBeforeCall(String name, V1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4488,14 +4376,10 @@ private com.squareup.okhttp.Call replaceClusterRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling replaceClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = replaceClusterRoleBindingCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4576,7 +4460,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedRoleCall(String name, String namespace, V1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4618,7 +4502,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedRoleValidateBeforeCall(String name, String namespace, V1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4637,14 +4521,10 @@ private com.squareup.okhttp.Call replaceNamespacedRoleValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedRoleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4728,7 +4608,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedRoleBindingCall(String name, String namespace, V1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4770,7 +4650,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedRoleBindingValidateBeforeCall(String name, String namespace, V1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4789,14 +4669,10 @@ private com.squareup.okhttp.Call replaceNamespacedRoleBindingValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedRoleBindingCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1Api.java index 67337fdc13..d258bd1289 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -75,7 +75,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createClusterRoleCall(V1alpha1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles"; @@ -115,7 +115,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createClusterRoleValidateBeforeCall(V1alpha1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -124,14 +124,10 @@ private com.squareup.okhttp.Call createClusterRoleValidateBeforeCall(V1alpha1Clu throw new ApiException("Missing the required parameter 'body' when calling createClusterRole(Async)"); } - + com.squareup.okhttp.Call call = createClusterRoleCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -207,7 +203,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createClusterRoleBindingCall(V1alpha1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings"; @@ -247,7 +243,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createClusterRoleBindingValidateBeforeCall(V1alpha1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -256,14 +252,10 @@ private com.squareup.okhttp.Call createClusterRoleBindingValidateBeforeCall(V1al throw new ApiException("Missing the required parameter 'body' when calling createClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = createClusterRoleBindingCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -340,7 +332,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedRoleCall(String namespace, V1alpha1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -381,7 +373,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedRoleValidateBeforeCall(String namespace, V1alpha1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -395,14 +387,10 @@ private com.squareup.okhttp.Call createNamespacedRoleValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling createNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedRoleCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -482,7 +470,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedRoleBindingCall(String namespace, V1alpha1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -523,7 +511,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedRoleBindingValidateBeforeCall(String namespace, V1alpha1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -537,14 +525,10 @@ private com.squareup.okhttp.Call createNamespacedRoleBindingValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling createNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedRoleBindingCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -627,7 +611,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteClusterRoleCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -674,7 +658,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteClusterRoleValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -688,14 +672,10 @@ private com.squareup.okhttp.Call deleteClusterRoleValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'body' when calling deleteClusterRole(Async)"); } - + com.squareup.okhttp.Call call = deleteClusterRoleCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -787,7 +767,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteClusterRoleBindingCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -834,7 +814,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteClusterRoleBindingValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -848,14 +828,10 @@ private com.squareup.okhttp.Call deleteClusterRoleBindingValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling deleteClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteClusterRoleBindingCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -950,7 +926,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionClusterRoleCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles"; @@ -1006,18 +982,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionClusterRoleValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionClusterRoleCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1121,7 +1093,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionClusterRoleBindingCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings"; @@ -1177,18 +1149,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionClusterRoleBindingValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionClusterRoleBindingCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1293,7 +1261,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedRoleCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1350,7 +1318,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedRoleValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1359,14 +1327,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedRoleValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedRoleCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1474,7 +1438,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1531,7 +1495,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1540,14 +1504,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedRoleBindingCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1652,7 +1612,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedRoleCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1700,7 +1660,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedRoleValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1719,14 +1679,10 @@ private com.squareup.okhttp.Call deleteNamespacedRoleValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedRoleCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1822,7 +1778,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedRoleBindingCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1870,7 +1826,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedRoleBindingValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1889,14 +1845,10 @@ private com.squareup.okhttp.Call deleteNamespacedRoleBindingValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedRoleBindingCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1985,7 +1937,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/"; @@ -2023,18 +1975,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -2111,7 +2059,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listClusterRoleCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles"; @@ -2167,18 +2115,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listClusterRoleValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listClusterRoleCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2282,7 +2226,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listClusterRoleBindingCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings"; @@ -2338,18 +2282,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listClusterRoleBindingValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listClusterRoleBindingCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2454,7 +2394,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedRoleCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2511,7 +2451,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedRoleValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2520,14 +2460,10 @@ private com.squareup.okhttp.Call listNamespacedRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedRoleCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2635,7 +2571,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedRoleBindingCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2692,7 +2628,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedRoleBindingValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2701,14 +2637,10 @@ private com.squareup.okhttp.Call listNamespacedRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedRoleBindingCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2815,7 +2747,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listRoleBindingForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings"; @@ -2871,18 +2803,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listRoleBindingForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listRoleBindingForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2986,7 +2914,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listRoleForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/roles"; @@ -3042,18 +2970,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listRoleForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listRoleForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3151,7 +3075,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchClusterRoleCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3192,7 +3116,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchClusterRoleValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3206,14 +3130,10 @@ private com.squareup.okhttp.Call patchClusterRoleValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling patchClusterRole(Async)"); } - + com.squareup.okhttp.Call call = patchClusterRoleCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3293,7 +3213,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchClusterRoleBindingCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3334,7 +3254,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchClusterRoleBindingValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3348,14 +3268,10 @@ private com.squareup.okhttp.Call patchClusterRoleBindingValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling patchClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = patchClusterRoleBindingCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3436,7 +3352,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedRoleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3478,7 +3394,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedRoleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3497,14 +3413,10 @@ private com.squareup.okhttp.Call patchNamespacedRoleValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedRoleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3588,7 +3500,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedRoleBindingCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3630,7 +3542,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedRoleBindingValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3649,14 +3561,10 @@ private com.squareup.okhttp.Call patchNamespacedRoleBindingValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedRoleBindingCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3738,7 +3646,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readClusterRoleCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3779,7 +3687,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readClusterRoleValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3788,14 +3696,10 @@ private com.squareup.okhttp.Call readClusterRoleValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'name' when calling readClusterRole(Async)"); } - + com.squareup.okhttp.Call call = readClusterRoleCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3871,7 +3775,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readClusterRoleBindingCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3912,7 +3816,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readClusterRoleBindingValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3921,14 +3825,10 @@ private com.squareup.okhttp.Call readClusterRoleBindingValidateBeforeCall(String throw new ApiException("Missing the required parameter 'name' when calling readClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = readClusterRoleBindingCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4005,7 +3905,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedRoleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4047,7 +3947,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedRoleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4061,14 +3961,10 @@ private com.squareup.okhttp.Call readNamespacedRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedRoleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4148,7 +4044,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedRoleBindingCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4190,7 +4086,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedRoleBindingValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4204,14 +4100,10 @@ private com.squareup.okhttp.Call readNamespacedRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedRoleBindingCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4291,7 +4183,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceClusterRoleCall(String name, V1alpha1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -4332,7 +4224,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceClusterRoleValidateBeforeCall(String name, V1alpha1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4346,14 +4238,10 @@ private com.squareup.okhttp.Call replaceClusterRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling replaceClusterRole(Async)"); } - + com.squareup.okhttp.Call call = replaceClusterRoleCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4433,7 +4321,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceClusterRoleBindingCall(String name, V1alpha1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -4474,7 +4362,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceClusterRoleBindingValidateBeforeCall(String name, V1alpha1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4488,14 +4376,10 @@ private com.squareup.okhttp.Call replaceClusterRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling replaceClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = replaceClusterRoleBindingCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4576,7 +4460,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedRoleCall(String name, String namespace, V1alpha1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4618,7 +4502,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedRoleValidateBeforeCall(String name, String namespace, V1alpha1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4637,14 +4521,10 @@ private com.squareup.okhttp.Call replaceNamespacedRoleValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedRoleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4728,7 +4608,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedRoleBindingCall(String name, String namespace, V1alpha1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4770,7 +4650,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedRoleBindingValidateBeforeCall(String name, String namespace, V1alpha1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4789,14 +4669,10 @@ private com.squareup.okhttp.Call replaceNamespacedRoleBindingValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedRoleBindingCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1Api.java index a1fc91b988..ee3f84c035 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -75,7 +75,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createClusterRoleCall(V1beta1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles"; @@ -115,7 +115,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createClusterRoleValidateBeforeCall(V1beta1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -124,14 +124,10 @@ private com.squareup.okhttp.Call createClusterRoleValidateBeforeCall(V1beta1Clus throw new ApiException("Missing the required parameter 'body' when calling createClusterRole(Async)"); } - + com.squareup.okhttp.Call call = createClusterRoleCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -207,7 +203,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createClusterRoleBindingCall(V1beta1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings"; @@ -247,7 +243,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createClusterRoleBindingValidateBeforeCall(V1beta1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -256,14 +252,10 @@ private com.squareup.okhttp.Call createClusterRoleBindingValidateBeforeCall(V1be throw new ApiException("Missing the required parameter 'body' when calling createClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = createClusterRoleBindingCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -340,7 +332,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedRoleCall(String namespace, V1beta1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -381,7 +373,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedRoleValidateBeforeCall(String namespace, V1beta1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -395,14 +387,10 @@ private com.squareup.okhttp.Call createNamespacedRoleValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling createNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedRoleCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -482,7 +470,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call createNamespacedRoleBindingCall(String namespace, V1beta1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -523,7 +511,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedRoleBindingValidateBeforeCall(String namespace, V1beta1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -537,14 +525,10 @@ private com.squareup.okhttp.Call createNamespacedRoleBindingValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling createNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedRoleBindingCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -627,7 +611,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteClusterRoleCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -674,7 +658,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteClusterRoleValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -688,14 +672,10 @@ private com.squareup.okhttp.Call deleteClusterRoleValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'body' when calling deleteClusterRole(Async)"); } - + com.squareup.okhttp.Call call = deleteClusterRoleCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -787,7 +767,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteClusterRoleBindingCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -834,7 +814,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteClusterRoleBindingValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -848,14 +828,10 @@ private com.squareup.okhttp.Call deleteClusterRoleBindingValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling deleteClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteClusterRoleBindingCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -950,7 +926,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionClusterRoleCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles"; @@ -1006,18 +982,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionClusterRoleValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionClusterRoleCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1121,7 +1093,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionClusterRoleBindingCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings"; @@ -1177,18 +1149,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionClusterRoleBindingValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionClusterRoleBindingCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1293,7 +1261,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedRoleCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1350,7 +1318,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedRoleValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1359,14 +1327,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedRoleValidateBeforeCal throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedRoleCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1474,7 +1438,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -1531,7 +1495,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1540,14 +1504,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedRoleBindingValidateBe throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedRoleBindingCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1652,7 +1612,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedRoleCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1700,7 +1660,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedRoleValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1719,14 +1679,10 @@ private com.squareup.okhttp.Call deleteNamespacedRoleValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedRoleCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1822,7 +1778,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedRoleBindingCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1870,7 +1826,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedRoleBindingValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1889,14 +1845,10 @@ private com.squareup.okhttp.Call deleteNamespacedRoleBindingValidateBeforeCall(S throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedRoleBindingCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -1985,7 +1937,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/"; @@ -2023,18 +1975,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -2111,7 +2059,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listClusterRoleCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles"; @@ -2167,18 +2115,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listClusterRoleValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listClusterRoleCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2282,7 +2226,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listClusterRoleBindingCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings"; @@ -2338,18 +2282,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listClusterRoleBindingValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listClusterRoleBindingCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2454,7 +2394,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedRoleCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2511,7 +2451,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedRoleValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2520,14 +2460,10 @@ private com.squareup.okhttp.Call listNamespacedRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedRoleCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2635,7 +2571,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedRoleBindingCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -2692,7 +2628,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedRoleBindingValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -2701,14 +2637,10 @@ private com.squareup.okhttp.Call listNamespacedRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedRoleBindingCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2815,7 +2747,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listRoleBindingForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/rolebindings"; @@ -2871,18 +2803,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listRoleBindingForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listRoleBindingForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -2986,7 +2914,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listRoleForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/roles"; @@ -3042,18 +2970,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listRoleForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listRoleForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -3151,7 +3075,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchClusterRoleCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3192,7 +3116,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchClusterRoleValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3206,14 +3130,10 @@ private com.squareup.okhttp.Call patchClusterRoleValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'body' when calling patchClusterRole(Async)"); } - + com.squareup.okhttp.Call call = patchClusterRoleCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3293,7 +3213,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchClusterRoleBindingCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3334,7 +3254,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchClusterRoleBindingValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3348,14 +3268,10 @@ private com.squareup.okhttp.Call patchClusterRoleBindingValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'body' when calling patchClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = patchClusterRoleBindingCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3436,7 +3352,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedRoleCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3478,7 +3394,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedRoleValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3497,14 +3413,10 @@ private com.squareup.okhttp.Call patchNamespacedRoleValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedRoleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3588,7 +3500,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedRoleBindingCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -3630,7 +3542,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedRoleBindingValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3649,14 +3561,10 @@ private com.squareup.okhttp.Call patchNamespacedRoleBindingValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedRoleBindingCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3738,7 +3646,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readClusterRoleCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3779,7 +3687,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readClusterRoleValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3788,14 +3696,10 @@ private com.squareup.okhttp.Call readClusterRoleValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'name' when calling readClusterRole(Async)"); } - + com.squareup.okhttp.Call call = readClusterRoleCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -3871,7 +3775,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readClusterRoleBindingCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -3912,7 +3816,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readClusterRoleBindingValidateBeforeCall(String name, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -3921,14 +3825,10 @@ private com.squareup.okhttp.Call readClusterRoleBindingValidateBeforeCall(String throw new ApiException("Missing the required parameter 'name' when calling readClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = readClusterRoleBindingCall(name, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4005,7 +3905,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedRoleCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4047,7 +3947,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedRoleValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4061,14 +3961,10 @@ private com.squareup.okhttp.Call readNamespacedRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedRoleCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4148,7 +4044,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedRoleBindingCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4190,7 +4086,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedRoleBindingValidateBeforeCall(String name, String namespace, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4204,14 +4100,10 @@ private com.squareup.okhttp.Call readNamespacedRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedRoleBindingCall(name, namespace, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4291,7 +4183,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceClusterRoleCall(String name, V1beta1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -4332,7 +4224,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceClusterRoleValidateBeforeCall(String name, V1beta1ClusterRole body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4346,14 +4238,10 @@ private com.squareup.okhttp.Call replaceClusterRoleValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling replaceClusterRole(Async)"); } - + com.squareup.okhttp.Call call = replaceClusterRoleCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4433,7 +4321,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceClusterRoleBindingCall(String name, V1beta1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -4474,7 +4362,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceClusterRoleBindingValidateBeforeCall(String name, V1beta1ClusterRoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4488,14 +4376,10 @@ private com.squareup.okhttp.Call replaceClusterRoleBindingValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling replaceClusterRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = replaceClusterRoleBindingCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4576,7 +4460,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedRoleCall(String name, String namespace, V1beta1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4618,7 +4502,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedRoleValidateBeforeCall(String name, String namespace, V1beta1Role body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4637,14 +4521,10 @@ private com.squareup.okhttp.Call replaceNamespacedRoleValidateBeforeCall(String throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedRole(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedRoleCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -4728,7 +4608,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedRoleBindingCall(String name, String namespace, V1beta1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -4770,7 +4650,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedRoleBindingValidateBeforeCall(String name, String namespace, V1beta1RoleBinding body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -4789,14 +4669,10 @@ private com.squareup.okhttp.Call replaceNamespacedRoleBindingValidateBeforeCall( throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedRoleBinding(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedRoleBindingCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingApi.java index 594f3b0d91..cec050b14e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingV1alpha1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingV1alpha1Api.java index 1ee99887d4..b4ac5a4576 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingV1alpha1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/SchedulingV1alpha1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -69,7 +69,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createPriorityClassCall(V1alpha1PriorityClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/priorityclasses"; @@ -109,7 +109,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createPriorityClassValidateBeforeCall(V1alpha1PriorityClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -118,14 +118,10 @@ private com.squareup.okhttp.Call createPriorityClassValidateBeforeCall(V1alpha1P throw new ApiException("Missing the required parameter 'body' when calling createPriorityClass(Async)"); } - + com.squareup.okhttp.Call call = createPriorityClassCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -208,7 +204,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionPriorityClassCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/priorityclasses"; @@ -264,18 +260,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionPriorityClassValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionPriorityClassCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -376,7 +368,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deletePriorityClassCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -423,7 +415,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deletePriorityClassValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -437,14 +429,10 @@ private com.squareup.okhttp.Call deletePriorityClassValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling deletePriorityClass(Async)"); } - + com.squareup.okhttp.Call call = deletePriorityClassCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -530,7 +518,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/"; @@ -568,18 +556,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -656,7 +640,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPriorityClassCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/priorityclasses"; @@ -712,18 +696,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPriorityClassValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPriorityClassCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -821,7 +801,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchPriorityClassCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -862,7 +842,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchPriorityClassValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -876,14 +856,10 @@ private com.squareup.okhttp.Call patchPriorityClassValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling patchPriorityClass(Async)"); } - + com.squareup.okhttp.Call call = patchPriorityClassCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -964,7 +940,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readPriorityClassCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1009,7 +985,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readPriorityClassValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1018,14 +994,10 @@ private com.squareup.okhttp.Call readPriorityClassValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'name' when calling readPriorityClass(Async)"); } - + com.squareup.okhttp.Call call = readPriorityClassCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1108,7 +1080,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replacePriorityClassCall(String name, V1alpha1PriorityClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1149,7 +1121,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replacePriorityClassValidateBeforeCall(String name, V1alpha1PriorityClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1163,14 +1135,10 @@ private com.squareup.okhttp.Call replacePriorityClassValidateBeforeCall(String n throw new ApiException("Missing the required parameter 'body' when calling replacePriorityClass(Async)"); } - + com.squareup.okhttp.Call call = replacePriorityClassCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsApi.java index 33de3cae06..f8a26dbc1e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsV1alpha1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsV1alpha1Api.java index 2148efcdcc..89f674dbc4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsV1alpha1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/SettingsV1alpha1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -70,7 +70,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createNamespacedPodPresetCall(String namespace, V1alpha1PodPreset body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -111,7 +111,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createNamespacedPodPresetValidateBeforeCall(String namespace, V1alpha1PodPreset body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -125,14 +125,10 @@ private com.squareup.okhttp.Call createNamespacedPodPresetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling createNamespacedPodPreset(Async)"); } - + com.squareup.okhttp.Call call = createNamespacedPodPresetCall(namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -219,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionNamespacedPodPresetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -276,7 +272,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionNamespacedPodPresetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -285,14 +281,10 @@ private com.squareup.okhttp.Call deleteCollectionNamespacedPodPresetValidateBefo throw new ApiException("Missing the required parameter 'namespace' when calling deleteCollectionNamespacedPodPreset(Async)"); } - + com.squareup.okhttp.Call call = deleteCollectionNamespacedPodPresetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -397,7 +389,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteNamespacedPodPresetCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -445,7 +437,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteNamespacedPodPresetValidateBeforeCall(String name, String namespace, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -464,14 +456,10 @@ private com.squareup.okhttp.Call deleteNamespacedPodPresetValidateBeforeCall(Str throw new ApiException("Missing the required parameter 'body' when calling deleteNamespacedPodPreset(Async)"); } - + com.squareup.okhttp.Call call = deleteNamespacedPodPresetCall(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -560,7 +548,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/"; @@ -598,18 +586,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -687,7 +671,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listNamespacedPodPresetCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets" .replaceAll("\\{" + "namespace" + "\\}", apiClient.escapeString(namespace.toString())); @@ -744,7 +728,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listNamespacedPodPresetValidateBeforeCall(String namespace, String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -753,14 +737,10 @@ private com.squareup.okhttp.Call listNamespacedPodPresetValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling listNamespacedPodPreset(Async)"); } - + com.squareup.okhttp.Call call = listNamespacedPodPresetCall(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -867,7 +847,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listPodPresetForAllNamespacesCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/podpresets"; @@ -923,18 +903,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listPodPresetForAllNamespacesValidateBeforeCall(String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String pretty, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listPodPresetForAllNamespacesCall(_continue, fieldSelector, includeUninitialized, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -1033,7 +1009,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchNamespacedPodPresetCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1075,7 +1051,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchNamespacedPodPresetValidateBeforeCall(String name, String namespace, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1094,14 +1070,10 @@ private com.squareup.okhttp.Call patchNamespacedPodPresetValidateBeforeCall(Stri throw new ApiException("Missing the required parameter 'body' when calling patchNamespacedPodPreset(Async)"); } - + com.squareup.okhttp.Call call = patchNamespacedPodPresetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -1186,7 +1158,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readNamespacedPodPresetCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1232,7 +1204,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readNamespacedPodPresetValidateBeforeCall(String name, String namespace, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1246,14 +1218,10 @@ private com.squareup.okhttp.Call readNamespacedPodPresetValidateBeforeCall(Strin throw new ApiException("Missing the required parameter 'namespace' when calling readNamespacedPodPreset(Async)"); } - + com.squareup.okhttp.Call call = readNamespacedPodPresetCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1340,7 +1308,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceNamespacedPodPresetCall(String name, String namespace, V1alpha1PodPreset body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())) @@ -1382,7 +1350,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceNamespacedPodPresetValidateBeforeCall(String name, String namespace, V1alpha1PodPreset body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1401,14 +1369,10 @@ private com.squareup.okhttp.Call replaceNamespacedPodPresetValidateBeforeCall(St throw new ApiException("Missing the required parameter 'body' when calling replaceNamespacedPodPreset(Async)"); } - + com.squareup.okhttp.Call call = replaceNamespacedPodPresetCall(name, namespace, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/StorageApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/StorageApi.java index 0ddd6d22e1..a32ac53c38 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/StorageApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/StorageApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getAPIGroupCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIGroupValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIGroupCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1Api.java index eb10ad73f1..ae4b347f29 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -69,7 +69,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createStorageClassCall(V1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/storageclasses"; @@ -109,7 +109,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createStorageClassValidateBeforeCall(V1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -118,14 +118,10 @@ private com.squareup.okhttp.Call createStorageClassValidateBeforeCall(V1StorageC throw new ApiException("Missing the required parameter 'body' when calling createStorageClass(Async)"); } - + com.squareup.okhttp.Call call = createStorageClassCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -208,7 +204,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionStorageClassCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/storageclasses"; @@ -264,18 +260,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionStorageClassValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionStorageClassCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -376,7 +368,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteStorageClassCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -423,7 +415,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteStorageClassValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -437,14 +429,10 @@ private com.squareup.okhttp.Call deleteStorageClassValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling deleteStorageClass(Async)"); } - + com.squareup.okhttp.Call call = deleteStorageClassCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -530,7 +518,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/"; @@ -568,18 +556,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -656,7 +640,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listStorageClassCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/storageclasses"; @@ -712,18 +696,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listStorageClassValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listStorageClassCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -821,7 +801,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchStorageClassCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -862,7 +842,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchStorageClassValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -876,14 +856,10 @@ private com.squareup.okhttp.Call patchStorageClassValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'body' when calling patchStorageClass(Async)"); } - + com.squareup.okhttp.Call call = patchStorageClassCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -964,7 +940,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readStorageClassCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1009,7 +985,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readStorageClassValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1018,14 +994,10 @@ private com.squareup.okhttp.Call readStorageClassValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'name' when calling readStorageClass(Async)"); } - + com.squareup.okhttp.Call call = readStorageClassCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1108,7 +1080,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceStorageClassCall(String name, V1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1149,7 +1121,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceStorageClassValidateBeforeCall(String name, V1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1163,14 +1135,10 @@ private com.squareup.okhttp.Call replaceStorageClassValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling replaceStorageClass(Async)"); } - + com.squareup.okhttp.Call call = replaceStorageClassCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1beta1Api.java b/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1beta1Api.java index 24adf8442e..e627770068 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1beta1Api.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/StorageV1beta1Api.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -69,7 +69,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call createStorageClassCall(V1beta1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/storageclasses"; @@ -109,7 +109,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call createStorageClassValidateBeforeCall(V1beta1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -118,14 +118,10 @@ private com.squareup.okhttp.Call createStorageClassValidateBeforeCall(V1beta1Sto throw new ApiException("Missing the required parameter 'body' when calling createStorageClass(Async)"); } - + com.squareup.okhttp.Call call = createStorageClassCall(body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -208,7 +204,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteCollectionStorageClassCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/storageclasses"; @@ -264,18 +260,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteCollectionStorageClassValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = deleteCollectionStorageClassCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -376,7 +368,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call deleteStorageClassCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -423,7 +415,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call deleteStorageClassValidateBeforeCall(String name, V1DeleteOptions body, String pretty, Integer gracePeriodSeconds, Boolean orphanDependents, String propagationPolicy, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -437,14 +429,10 @@ private com.squareup.okhttp.Call deleteStorageClassValidateBeforeCall(String nam throw new ApiException("Missing the required parameter 'body' when calling deleteStorageClass(Async)"); } - + com.squareup.okhttp.Call call = deleteStorageClassCall(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy, progressListener, progressRequestListener); return call; - - - - } /** @@ -530,7 +518,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call getAPIResourcesCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/"; @@ -568,18 +556,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getAPIResourcesValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getAPIResourcesCall(progressListener, progressRequestListener); return call; - - - - } /** @@ -656,7 +640,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call listStorageClassCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/storageclasses"; @@ -712,18 +696,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call listStorageClassValidateBeforeCall(String pretty, String _continue, String fieldSelector, Boolean includeUninitialized, String labelSelector, Integer limit, String resourceVersion, Integer timeoutSeconds, Boolean watch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = listStorageClassCall(pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, progressListener, progressRequestListener); return call; - - - - } /** @@ -821,7 +801,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call patchStorageClassCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -862,7 +842,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call patchStorageClassValidateBeforeCall(String name, Object body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -876,14 +856,10 @@ private com.squareup.okhttp.Call patchStorageClassValidateBeforeCall(String name throw new ApiException("Missing the required parameter 'body' when calling patchStorageClass(Async)"); } - + com.squareup.okhttp.Call call = patchStorageClassCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** @@ -964,7 +940,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call readStorageClassCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1009,7 +985,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call readStorageClassValidateBeforeCall(String name, String pretty, Boolean exact, Boolean export, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1018,14 +994,10 @@ private com.squareup.okhttp.Call readStorageClassValidateBeforeCall(String name, throw new ApiException("Missing the required parameter 'name' when calling readStorageClass(Async)"); } - + com.squareup.okhttp.Call call = readStorageClassCall(name, pretty, exact, export, progressListener, progressRequestListener); return call; - - - - } /** @@ -1108,7 +1080,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don */ public com.squareup.okhttp.Call replaceStorageClassCall(String name, V1beta1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = body; - + // create path and map variables String localVarPath = "/apis/storage.k8s.io/v1beta1/storageclasses/{name}" .replaceAll("\\{" + "name" + "\\}", apiClient.escapeString(name.toString())); @@ -1149,7 +1121,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call replaceStorageClassValidateBeforeCall(String name, V1beta1StorageClass body, String pretty, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { @@ -1163,14 +1135,10 @@ private com.squareup.okhttp.Call replaceStorageClassValidateBeforeCall(String na throw new ApiException("Missing the required parameter 'body' when calling replaceStorageClass(Async)"); } - + com.squareup.okhttp.Call call = replaceStorageClassCall(name, body, pretty, progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/apis/VersionApi.java b/kubernetes/src/main/java/io/kubernetes/client/apis/VersionApi.java index f543931c1a..276b368c8f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/apis/VersionApi.java +++ b/kubernetes/src/main/java/io/kubernetes/client/apis/VersionApi.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -63,7 +63,7 @@ public void setApiClient(ApiClient apiClient) { */ public com.squareup.okhttp.Call getCodeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; - + // create path and map variables String localVarPath = "/version/"; @@ -101,18 +101,14 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch String[] localVarAuthNames = new String[] { "BearerToken" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } - + @SuppressWarnings("rawtypes") private com.squareup.okhttp.Call getCodeValidateBeforeCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { - + com.squareup.okhttp.Call call = getCodeCall(progressListener, progressRequestListener); return call; - - - - } /** diff --git a/kubernetes/src/main/java/io/kubernetes/client/auth/ApiKeyAuth.java b/kubernetes/src/main/java/io/kubernetes/client/auth/ApiKeyAuth.java index 4b590ba9f9..64cc944f80 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/auth/ApiKeyAuth.java +++ b/kubernetes/src/main/java/io/kubernetes/client/auth/ApiKeyAuth.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/auth/Authentication.java b/kubernetes/src/main/java/io/kubernetes/client/auth/Authentication.java index 2c6f998b8f..af1b165476 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/auth/Authentication.java +++ b/kubernetes/src/main/java/io/kubernetes/client/auth/Authentication.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/auth/HttpBasicAuth.java b/kubernetes/src/main/java/io/kubernetes/client/auth/HttpBasicAuth.java index edb132b78b..67c7329ad7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/auth/HttpBasicAuth.java +++ b/kubernetes/src/main/java/io/kubernetes/client/auth/HttpBasicAuth.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/auth/OAuth.java b/kubernetes/src/main/java/io/kubernetes/client/auth/OAuth.java index 5b556dc2f0..d8accae90e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/auth/OAuth.java +++ b/kubernetes/src/main/java/io/kubernetes/client/auth/OAuth.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/auth/OAuthFlow.java b/kubernetes/src/main/java/io/kubernetes/client/auth/OAuthFlow.java index c57ddb0bfa..f367381ca3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/auth/OAuthFlow.java +++ b/kubernetes/src/main/java/io/kubernetes/client/auth/OAuthFlow.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Deployment.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Deployment.java index 7318be9259..724c946bdb 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Deployment.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Deployment.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentCondition.java index 9ed7cb196c..ad048949a3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentList.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentList.java index 0903a620e5..6925a7b933 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentRollback.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentRollback.java index d01bb38449..bcf5db2814 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentRollback.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentRollback.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentSpec.java index aa338995ae..aba81b7982 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStatus.java index a93dba1d81..e1e0e75183 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStrategy.java index bd90a1c651..944afebdd5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1DeploymentStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollbackConfig.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollbackConfig.java index f21e31223b..71c5e3b0a4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollbackConfig.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollbackConfig.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollingUpdateDeployment.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollingUpdateDeployment.java index 790a3fc031..3f104eee97 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollingUpdateDeployment.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1RollingUpdateDeployment.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -31,12 +31,12 @@ public class AppsV1beta1RollingUpdateDeployment { @SerializedName("maxSurge") - private IntOrString maxSurge = null; + private String maxSurge = null; @SerializedName("maxUnavailable") - private IntOrString maxUnavailable = null; + private String maxUnavailable = null; - public AppsV1beta1RollingUpdateDeployment maxSurge(IntOrString maxSurge) { + public AppsV1beta1RollingUpdateDeployment maxSurge(String maxSurge) { this.maxSurge = maxSurge; return this; } @@ -46,15 +46,15 @@ public AppsV1beta1RollingUpdateDeployment maxSurge(IntOrString maxSurge) { * @return maxSurge **/ @ApiModelProperty(value = "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 RC 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 RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.") - public IntOrString getMaxSurge() { + public String getMaxSurge() { return maxSurge; } - public void setMaxSurge(IntOrString maxSurge) { + public void setMaxSurge(String maxSurge) { this.maxSurge = maxSurge; } - public AppsV1beta1RollingUpdateDeployment maxUnavailable(IntOrString maxUnavailable) { + public AppsV1beta1RollingUpdateDeployment maxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; return this; } @@ -64,11 +64,11 @@ public AppsV1beta1RollingUpdateDeployment maxUnavailable(IntOrString maxUnavaila * @return maxUnavailable **/ @ApiModelProperty(value = "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 RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.") - public IntOrString getMaxUnavailable() { + public String getMaxUnavailable() { return maxUnavailable; } - public void setMaxUnavailable(IntOrString maxUnavailable) { + public void setMaxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Scale.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Scale.java index ee237a6870..16a28adb6d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Scale.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1Scale.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleSpec.java index b1591d6d35..38ddac1616 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleStatus.java index 40d572baa3..31dadfa87d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/AppsV1beta1ScaleStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Deployment.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Deployment.java index 666e04770d..3c272c82ec 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Deployment.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Deployment.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentCondition.java index 2bc078ccae..f08ab61cd7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentList.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentList.java index 3bb1da4a42..1232f24688 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentRollback.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentRollback.java index 4fb2ad54df..971368ae13 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentRollback.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentRollback.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentSpec.java index ec4acd2ad3..cf2e057d27 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStatus.java index 0f07d41bbc..f93c94dd49 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStrategy.java index a98db1c0ce..ef1925d2c1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1DeploymentStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollbackConfig.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollbackConfig.java index 5910f3e220..b33dad2c04 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollbackConfig.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollbackConfig.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollingUpdateDeployment.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollingUpdateDeployment.java index 8798d3b7e2..d602d4a168 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollingUpdateDeployment.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1RollingUpdateDeployment.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Scale.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Scale.java index 6c28cdfa01..1473f89d71 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Scale.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1Scale.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleSpec.java index 87815f845b..b504d203c5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleStatus.java index c5f7a138a2..5be195c341 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/ExtensionsV1beta1ScaleStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/RuntimeRawExtension.java b/kubernetes/src/main/java/io/kubernetes/client/models/RuntimeRawExtension.java index c0b33e4d21..d6a7d08fde 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/RuntimeRawExtension.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/RuntimeRawExtension.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -60,12 +61,12 @@ public boolean equals(java.lang.Object o) { return false; } RuntimeRawExtension runtimeRawExtension = (RuntimeRawExtension) o; - return Objects.equals(this.raw, runtimeRawExtension.raw); + return Arrays.equals(this.raw, runtimeRawExtension.raw); } @Override public int hashCode() { - return Objects.hash(raw); + return Objects.hash(Arrays.hashCode(raw)); } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroup.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroup.java index dd9bc0810a..c329cda4f2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroup.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroup.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroupList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroupList.java index 9d5fac0c51..90de02fc62 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroupList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIGroupList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResource.java index 2853e60545..ef101212f2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResourceList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResourceList.java index 397a6f3ce3..cd524d624e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResourceList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIResourceList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIVersions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIVersions.java index e90adb13b1..f5c65ed625 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1APIVersions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1APIVersions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1AWSElasticBlockStoreVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1AWSElasticBlockStoreVolumeSource.java index 79cdb94d5b..e59d68f3a6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1AWSElasticBlockStoreVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1AWSElasticBlockStoreVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Affinity.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Affinity.java index bdbc0221ce..903dfd501d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Affinity.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Affinity.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1AttachedVolume.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1AttachedVolume.java index 6e13f562a3..dc7c2dbec1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1AttachedVolume.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1AttachedVolume.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureDiskVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureDiskVolumeSource.java index eededd06eb..8639217d19 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureDiskVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureDiskVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFilePersistentVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFilePersistentVolumeSource.java index e545084f48..d4fbd7752a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFilePersistentVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFilePersistentVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFileVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFileVolumeSource.java index a4c45fcdcf..84efb51eac 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFileVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1AzureFileVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Binding.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Binding.java index e72a6d0005..7f1da5d1f1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Binding.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Binding.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Capabilities.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Capabilities.java index 36bb68f5bd..f18364d700 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Capabilities.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Capabilities.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSPersistentVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSPersistentVolumeSource.java index 8a7ef776b0..d2c4696823 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSPersistentVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSPersistentVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSVolumeSource.java index abb1d01239..fa9ec0b880 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1CephFSVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1CinderVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1CinderVolumeSource.java index cbfe69e48e..5c0903bf22 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1CinderVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1CinderVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClientIPConfig.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClientIPConfig.java index 2966d53c6d..443cb0604c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClientIPConfig.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClientIPConfig.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRole.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRole.java index 77d56c121e..a7e6d22552 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRole.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRole.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBinding.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBinding.java index 00aeddff50..8ecd36e4cb 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBinding.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBinding.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBindingList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBindingList.java index ca58ec007e..0392e8dd91 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBindingList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleBindingList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleList.java index 870c518879..3a497b368d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ClusterRoleList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentCondition.java index 04ae4b1955..15145f1a90 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatus.java index e76ed34903..98ed12b5f4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatusList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatusList.java index 7e63d2814e..6e1cf2ae66 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatusList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ComponentStatusList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMap.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMap.java index b5f7506097..0e659df9af 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMap.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMap.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapEnvSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapEnvSource.java index 6810f2364f..4e92a88346 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapEnvSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapEnvSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapKeySelector.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapKeySelector.java index da8e0bc8e9..5ba9a96e9f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapKeySelector.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapKeySelector.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapList.java index f524476085..430aa222d8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapProjection.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapProjection.java index 21eaecc453..0ce62536b2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapProjection.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapProjection.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapVolumeSource.java index fbf4c6843f..7869f168e5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ConfigMapVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Container.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Container.java index 09459a1e08..65741177b9 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Container.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Container.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerImage.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerImage.java index d95dd3591b..659a875f51 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerImage.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerImage.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerPort.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerPort.java index 6f3b510d5d..2cced3371f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerPort.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerPort.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerState.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerState.java index d6a9728d33..30632ddc0e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerState.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerState.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateRunning.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateRunning.java index 51da63c1a6..860ef5b24a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateRunning.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateRunning.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateTerminated.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateTerminated.java index 18b57bf7f9..f916122ca3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateTerminated.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateTerminated.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateWaiting.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateWaiting.java index dde3caa361..37cd78402d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateWaiting.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStateWaiting.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStatus.java index 7ed48eef7d..5bded630fe 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ContainerStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1CrossVersionObjectReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1CrossVersionObjectReference.java index 131acaf3ba..b9bec3098b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1CrossVersionObjectReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1CrossVersionObjectReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1DaemonEndpoint.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1DaemonEndpoint.java index 2c45245485..263a90d506 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1DaemonEndpoint.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1DaemonEndpoint.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1DeleteOptions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1DeleteOptions.java index e9bdd5d4ff..c9a4c30ec4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1DeleteOptions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1DeleteOptions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIProjection.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIProjection.java index ec07bec998..38065c0d3c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIProjection.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIProjection.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeFile.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeFile.java index 4d24fda664..a1d373a446 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeFile.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeFile.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeSource.java index 8b0ed39a16..6b8ee2cbc6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1DownwardAPIVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EmptyDirVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EmptyDirVolumeSource.java index ccabec93ae..ba0cd5696e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EmptyDirVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EmptyDirVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointAddress.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointAddress.java index aa27bc84d2..a49bb9ad95 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointAddress.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointAddress.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointPort.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointPort.java index cdb300cce5..785a87d7e2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointPort.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointPort.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointSubset.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointSubset.java index f204831a11..c3c6fb66b6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointSubset.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointSubset.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Endpoints.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Endpoints.java index aee26f49b2..a4651b14fc 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Endpoints.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Endpoints.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointsList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointsList.java index 96e6faf3bb..1074084b01 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointsList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EndpointsList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvFromSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvFromSource.java index 178eea3023..3d609d1384 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvFromSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvFromSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVar.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVar.java index af0f911209..a6f8c72e03 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVar.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVar.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVarSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVarSource.java index 752f68c791..a61db3585f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVarSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EnvVarSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Event.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Event.java index e24ffada13..5e958fb4d3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Event.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Event.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EventList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EventList.java index 68eb86da8a..de7ddf429a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EventList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EventList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1EventSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1EventSource.java index af38e640ed..f350a7d60a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1EventSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1EventSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ExecAction.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ExecAction.java index c68a2c6b81..646a3f7472 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ExecAction.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ExecAction.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1FCVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1FCVolumeSource.java index 3119d38929..20aa835314 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1FCVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1FCVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1FlexVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1FlexVolumeSource.java index 0a9cd03e75..a3e82160d9 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1FlexVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1FlexVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1FlockerVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1FlockerVolumeSource.java index 7176cfced4..f1d6e87d4d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1FlockerVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1FlockerVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1GCEPersistentDiskVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1GCEPersistentDiskVolumeSource.java index 989773a5a7..c457a7db28 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1GCEPersistentDiskVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1GCEPersistentDiskVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1GitRepoVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1GitRepoVolumeSource.java index 94f6d63a4c..68d79de063 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1GitRepoVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1GitRepoVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1GlusterfsVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1GlusterfsVolumeSource.java index 6809496a7d..4d67f0248c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1GlusterfsVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1GlusterfsVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1GroupVersionForDiscovery.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1GroupVersionForDiscovery.java index d16bba0c33..37014da013 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1GroupVersionForDiscovery.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1GroupVersionForDiscovery.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPGetAction.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPGetAction.java index 4aa089c94e..1f02533b25 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPGetAction.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPGetAction.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.kubernetes.client.models.V1HTTPHeader; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -43,7 +43,7 @@ public class V1HTTPGetAction { private String path = null; @SerializedName("port") - private IntOrString port = null; + private String port = null; @SerializedName("scheme") private String scheme = null; @@ -110,7 +110,7 @@ public void setPath(String path) { this.path = path; } - public V1HTTPGetAction port(IntOrString port) { + public V1HTTPGetAction port(String port) { this.port = port; return this; } @@ -120,11 +120,11 @@ public V1HTTPGetAction port(IntOrString port) { * @return port **/ @ApiModelProperty(required = true, value = "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.") - public IntOrString getPort() { + public String getPort() { return port; } - public void setPort(IntOrString port) { + public void setPort(String port) { this.port = port; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPHeader.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPHeader.java index fb0ddb35eb..2160978059 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPHeader.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HTTPHeader.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Handler.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Handler.java index 399f041848..6c382814c5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Handler.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Handler.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscaler.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscaler.java index c2f8058e16..e3cfc9acb3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscaler.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscaler.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerList.java index f6db569d34..4ead2667d0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerSpec.java index c570bf92c7..320cba4d35 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerStatus.java index f2bac3e069..99306e41f1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HorizontalPodAutoscalerStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HostAlias.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HostAlias.java index 7bc6092895..b045142b78 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HostAlias.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HostAlias.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1HostPathVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1HostPathVolumeSource.java index 70678a5806..ae4fe75384 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1HostPathVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1HostPathVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1IPBlock.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1IPBlock.java index fc0067ebae..4135d10efc 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1IPBlock.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1IPBlock.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ISCSIVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ISCSIVolumeSource.java index 8e32f52fd9..0fbf1e50bf 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ISCSIVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ISCSIVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializer.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializer.java index 02163562ef..8a262539a3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializer.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializer.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializers.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializers.java index b623ce57a5..e85b74c1ea 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializers.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Initializers.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Job.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Job.java index 21892e84bc..f923621c29 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Job.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Job.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobCondition.java index fd2789aab4..1fb994ec58 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobList.java index dc7fde439a..0519353a2f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobSpec.java index 7dffb24f2b..2758653b2c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobStatus.java index 081aff64b1..78d0074374 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1JobStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1JobStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1KeyToPath.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1KeyToPath.java index 1fa7f7bf90..34f65ae1e4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1KeyToPath.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1KeyToPath.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelector.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelector.java index 63defdadbd..93cdc09d51 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelector.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelector.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelectorRequirement.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelectorRequirement.java index e0437f08d6..78035c27d0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelectorRequirement.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LabelSelectorRequirement.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Lifecycle.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Lifecycle.java index 29b1ce57de..2a6918b3a7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Lifecycle.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Lifecycle.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRange.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRange.java index 4b5605a28b..b40e212053 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRange.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRange.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeItem.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeItem.java index 32849f8d51..cb0231fc0a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeItem.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeItem.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeList.java index 10dc80bed1..bbb558c0b0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeSpec.java index fbb7ac858d..fa697c6430 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LimitRangeSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ListMeta.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ListMeta.java index 59e1b02a84..af4a7ca2a1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ListMeta.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ListMeta.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerIngress.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerIngress.java index 69241a96df..88c354728f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerIngress.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerIngress.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerStatus.java index 855626921d..b093544260 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LoadBalancerStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalObjectReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalObjectReference.java index 7a8251b9ce..abb9fcc178 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalObjectReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalObjectReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalSubjectAccessReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalSubjectAccessReview.java index c7300848d4..a7d883ecbf 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalSubjectAccessReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalSubjectAccessReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalVolumeSource.java index 76e21be137..cabc1cd335 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1LocalVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NFSVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NFSVolumeSource.java index 7d5da6199f..16a63df79d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NFSVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NFSVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Namespace.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Namespace.java index 7a98379f96..64cbb84e37 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Namespace.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Namespace.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceList.java index 4348601089..1f277e0a4f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceSpec.java index 5135fcc678..3baadf1ee8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceStatus.java index bf13a9a208..058f9f504d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NamespaceStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicy.java index d813f18a0b..231528e7ae 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyEgressRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyEgressRule.java index 6a25f1f7d4..e1b7a8ef45 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyEgressRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyEgressRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyIngressRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyIngressRule.java index 322480fe79..53f6aa0422 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyIngressRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyIngressRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyList.java index 83e9013aa0..843b3048b1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPeer.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPeer.java index b307985764..de13acfc42 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPeer.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPeer.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPort.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPort.java index d0043c3bf6..85b75ed3df 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPort.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicyPort.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -31,12 +31,12 @@ public class V1NetworkPolicyPort { @SerializedName("port") - private IntOrString port = null; + private String port = null; @SerializedName("protocol") private String protocol = null; - public V1NetworkPolicyPort port(IntOrString port) { + public V1NetworkPolicyPort port(String port) { this.port = port; return this; } @@ -46,11 +46,11 @@ public V1NetworkPolicyPort port(IntOrString port) { * @return port **/ @ApiModelProperty(value = "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers.") - public IntOrString getPort() { + public String getPort() { return port; } - public void setPort(IntOrString port) { + public void setPort(String port) { this.port = port; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicySpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicySpec.java index a92d412e18..b9943ed656 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicySpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NetworkPolicySpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Node.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Node.java index e898045f14..78572b7395 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Node.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Node.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAddress.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAddress.java index 708ae04be2..47816328e5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAddress.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAddress.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAffinity.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAffinity.java index 185d33d092..2a8cd1b2d1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAffinity.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeAffinity.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeCondition.java index 8f31fd2a8c..6f52d61004 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeConfigSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeConfigSource.java index a5da3a1e00..5b9770d361 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeConfigSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeConfigSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeDaemonEndpoints.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeDaemonEndpoints.java index f17cb7fc1a..01dc77611f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeDaemonEndpoints.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeDaemonEndpoints.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeList.java index fc1df5456f..0416903107 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelector.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelector.java index aef7b04d63..1bdd542f5f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelector.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelector.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorRequirement.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorRequirement.java index b902a7c489..fd1a81d69e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorRequirement.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorRequirement.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorTerm.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorTerm.java index d72903db4d..da6523c0be 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorTerm.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSelectorTerm.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSpec.java index 05ebfef13f..03e934750d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeStatus.java index 5b68a2539b..11a62eab74 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSystemInfo.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSystemInfo.java index 8e75b152f4..292a907be0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSystemInfo.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NodeSystemInfo.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceAttributes.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceAttributes.java index 56c75e16c5..ded93f59f4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceAttributes.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceAttributes.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceRule.java index b10015209a..b11e4d1a4b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1NonResourceRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectFieldSelector.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectFieldSelector.java index 716b592ede..cd29787825 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectFieldSelector.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectFieldSelector.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectMeta.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectMeta.java index 77d6aff2c0..046dafc284 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectMeta.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectMeta.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectReference.java index 1946e52ab2..3aa9e7d06a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ObjectReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1OwnerReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1OwnerReference.java index fd87e0bebf..a72182e23d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1OwnerReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1OwnerReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolume.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolume.java index d353211406..f6512c9291 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolume.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolume.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaim.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaim.java index 8dfd38d8a5..b7ec14270d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaim.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaim.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimCondition.java index e8ac7f3cf7..961ebb9f47 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimList.java index 9bf24c7412..7b1b2e595a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimSpec.java index 11836fd5b9..21e1d25af9 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimStatus.java index 826f867dec..ec3672bf77 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimVolumeSource.java index 924018240c..4e4e8ae7bc 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeClaimVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeList.java index 51d4e3dae9..bd27351c2a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeSpec.java index cf2adfacc5..009d7defca 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -38,7 +39,7 @@ import io.kubernetes.client.models.V1PortworxVolumeSource; import io.kubernetes.client.models.V1QuobyteVolumeSource; import io.kubernetes.client.models.V1RBDVolumeSource; -import io.kubernetes.client.models.V1ScaleIOVolumeSource; +import io.kubernetes.client.models.V1ScaleIOPersistentVolumeSource; import io.kubernetes.client.models.V1StorageOSPersistentVolumeSource; import io.kubernetes.client.models.V1VsphereVirtualDiskVolumeSource; import io.swagger.annotations.ApiModel; @@ -125,7 +126,7 @@ public class V1PersistentVolumeSpec { private V1RBDVolumeSource rbd = null; @SerializedName("scaleIO") - private V1ScaleIOVolumeSource scaleIO = null; + private V1ScaleIOPersistentVolumeSource scaleIO = null; @SerializedName("storageClassName") private String storageClassName = null; @@ -574,7 +575,7 @@ public void setRbd(V1RBDVolumeSource rbd) { this.rbd = rbd; } - public V1PersistentVolumeSpec scaleIO(V1ScaleIOVolumeSource scaleIO) { + public V1PersistentVolumeSpec scaleIO(V1ScaleIOPersistentVolumeSource scaleIO) { this.scaleIO = scaleIO; return this; } @@ -584,11 +585,11 @@ public V1PersistentVolumeSpec scaleIO(V1ScaleIOVolumeSource scaleIO) { * @return scaleIO **/ @ApiModelProperty(value = "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.") - public V1ScaleIOVolumeSource getScaleIO() { + public V1ScaleIOPersistentVolumeSource getScaleIO() { return scaleIO; } - public void setScaleIO(V1ScaleIOVolumeSource scaleIO) { + public void setScaleIO(V1ScaleIOPersistentVolumeSource scaleIO) { this.scaleIO = scaleIO; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeStatus.java index 1762f84af2..cce1cce444 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PersistentVolumeStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PhotonPersistentDiskVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PhotonPersistentDiskVolumeSource.java index b1694d266c..67850b37de 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PhotonPersistentDiskVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PhotonPersistentDiskVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Pod.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Pod.java index d894dd3a00..abe0c91979 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Pod.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Pod.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinity.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinity.java index 2a09bb940c..2ceff6c4f0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinity.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinity.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinityTerm.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinityTerm.java index b5f55938a7..938effba9a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinityTerm.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAffinityTerm.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAntiAffinity.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAntiAffinity.java index e9f8b5ff21..170f14c5bb 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAntiAffinity.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodAntiAffinity.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodCondition.java index dcd155d955..66233bc079 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodList.java index c22dbe6e20..54fd144ffa 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSecurityContext.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSecurityContext.java index 65246c7314..6df88af578 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSecurityContext.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSecurityContext.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSpec.java index 08468d7532..7f22067759 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodStatus.java index be5923315e..5fde956616 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplate.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplate.java index d9f9364d63..83682d7ef2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplate.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplate.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateList.java index ccf7f394a9..b41df9887f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateSpec.java index 79801f184c..c2dba9c344 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PodTemplateSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PolicyRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PolicyRule.java index 2cca766565..fb7d37890f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PolicyRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PolicyRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PortworxVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PortworxVolumeSource.java index ce4f9d8d60..e73311c7be 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PortworxVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PortworxVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Preconditions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Preconditions.java index 7a9051170b..90aef737e3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Preconditions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Preconditions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1PreferredSchedulingTerm.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1PreferredSchedulingTerm.java index 0ba7e39305..8ed2d8a594 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1PreferredSchedulingTerm.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1PreferredSchedulingTerm.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Probe.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Probe.java index f472b0a374..c876b277cd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Probe.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Probe.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ProjectedVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ProjectedVolumeSource.java index 48bcda64ed..356591ead3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ProjectedVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ProjectedVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1QuobyteVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1QuobyteVolumeSource.java index 1c29261efa..6e054a8f2a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1QuobyteVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1QuobyteVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1RBDVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1RBDVolumeSource.java index 67e148506a..9a2aea8987 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1RBDVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1RBDVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationController.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationController.java index fe16fea016..80dbbf5113 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationController.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationController.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerCondition.java index 405b047172..953c6a9d87 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerList.java index db8143a601..f8b194cef4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerSpec.java index 707ac2d4fd..a50eb9fe67 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerStatus.java index b580ed2e51..7e962d51ca 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ReplicationControllerStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceAttributes.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceAttributes.java index 08f51c122d..06e5e9e04f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceAttributes.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceAttributes.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceFieldSelector.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceFieldSelector.java index d9209422b4..57c423cbc5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceFieldSelector.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceFieldSelector.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuota.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuota.java index fd3ad3c3a3..c4e20a6d1b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuota.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuota.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaList.java index a9b2c16c45..cccd17be39 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaSpec.java index 5c16f4dcb9..1a9a699350 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaStatus.java index 6d18b67f2b..532aebe06d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceQuotaStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRequirements.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRequirements.java index bcaefdc25f..9faaf68064 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRequirements.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRequirements.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRule.java index 4e956aefe9..fb3625f9f7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ResourceRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Role.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Role.java index d17565e3d3..73dbe948ce 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Role.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Role.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBinding.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBinding.java index ca5fb379e6..43c292424f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBinding.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBinding.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBindingList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBindingList.java index 8e0885e1d7..b462a64327 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBindingList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleBindingList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleList.java index b30b83c711..d1adce5195 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleRef.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleRef.java index ce4a623485..cd5277c8be 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleRef.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1RoleRef.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SELinuxOptions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SELinuxOptions.java index 54f6de5f84..a15a58ec08 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SELinuxOptions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SELinuxOptions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Scale.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Scale.java index 37142efaaf..4701878657 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Scale.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Scale.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleIOPersistentVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleIOPersistentVolumeSource.java new file mode 100644 index 0000000000..2c81f12830 --- /dev/null +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleIOPersistentVolumeSource.java @@ -0,0 +1,303 @@ +/* + * Kubernetes + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * OpenAPI spec version: v1.8.9 + * + * + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen.git + * Do not edit the class manually. + */ + + +package io.kubernetes.client.models; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.kubernetes.client.models.V1SecretReference; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume + */ +@ApiModel(description = "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume") + +public class V1ScaleIOPersistentVolumeSource { + @SerializedName("fsType") + private String fsType = null; + + @SerializedName("gateway") + private String gateway = null; + + @SerializedName("protectionDomain") + private String protectionDomain = null; + + @SerializedName("readOnly") + private Boolean readOnly = null; + + @SerializedName("secretRef") + private V1SecretReference secretRef = null; + + @SerializedName("sslEnabled") + private Boolean sslEnabled = null; + + @SerializedName("storageMode") + private String storageMode = null; + + @SerializedName("storagePool") + private String storagePool = null; + + @SerializedName("system") + private String system = null; + + @SerializedName("volumeName") + private String volumeName = null; + + public V1ScaleIOPersistentVolumeSource fsType(String fsType) { + this.fsType = fsType; + return this; + } + + /** + * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. + * @return fsType + **/ + @ApiModelProperty(value = "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.") + public String getFsType() { + return fsType; + } + + public void setFsType(String fsType) { + this.fsType = fsType; + } + + public V1ScaleIOPersistentVolumeSource gateway(String gateway) { + this.gateway = gateway; + return this; + } + + /** + * The host address of the ScaleIO API Gateway. + * @return gateway + **/ + @ApiModelProperty(required = true, value = "The host address of the ScaleIO API Gateway.") + public String getGateway() { + return gateway; + } + + public void setGateway(String gateway) { + this.gateway = gateway; + } + + public V1ScaleIOPersistentVolumeSource protectionDomain(String protectionDomain) { + this.protectionDomain = protectionDomain; + return this; + } + + /** + * The name of the ScaleIO Protection Domain for the configured storage. + * @return protectionDomain + **/ + @ApiModelProperty(value = "The name of the ScaleIO Protection Domain for the configured storage.") + public String getProtectionDomain() { + return protectionDomain; + } + + public void setProtectionDomain(String protectionDomain) { + this.protectionDomain = protectionDomain; + } + + public V1ScaleIOPersistentVolumeSource readOnly(Boolean readOnly) { + this.readOnly = readOnly; + return this; + } + + /** + * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + * @return readOnly + **/ + @ApiModelProperty(value = "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.") + public Boolean isReadOnly() { + return readOnly; + } + + public void setReadOnly(Boolean readOnly) { + this.readOnly = readOnly; + } + + public V1ScaleIOPersistentVolumeSource secretRef(V1SecretReference secretRef) { + this.secretRef = secretRef; + return this; + } + + /** + * SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. + * @return secretRef + **/ + @ApiModelProperty(required = true, value = "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.") + public V1SecretReference getSecretRef() { + return secretRef; + } + + public void setSecretRef(V1SecretReference secretRef) { + this.secretRef = secretRef; + } + + public V1ScaleIOPersistentVolumeSource sslEnabled(Boolean sslEnabled) { + this.sslEnabled = sslEnabled; + return this; + } + + /** + * Flag to enable/disable SSL communication with Gateway, default false + * @return sslEnabled + **/ + @ApiModelProperty(value = "Flag to enable/disable SSL communication with Gateway, default false") + public Boolean isSslEnabled() { + return sslEnabled; + } + + public void setSslEnabled(Boolean sslEnabled) { + this.sslEnabled = sslEnabled; + } + + public V1ScaleIOPersistentVolumeSource storageMode(String storageMode) { + this.storageMode = storageMode; + return this; + } + + /** + * Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. + * @return storageMode + **/ + @ApiModelProperty(value = "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.") + public String getStorageMode() { + return storageMode; + } + + public void setStorageMode(String storageMode) { + this.storageMode = storageMode; + } + + public V1ScaleIOPersistentVolumeSource storagePool(String storagePool) { + this.storagePool = storagePool; + return this; + } + + /** + * The ScaleIO Storage Pool associated with the protection domain. + * @return storagePool + **/ + @ApiModelProperty(value = "The ScaleIO Storage Pool associated with the protection domain.") + public String getStoragePool() { + return storagePool; + } + + public void setStoragePool(String storagePool) { + this.storagePool = storagePool; + } + + public V1ScaleIOPersistentVolumeSource system(String system) { + this.system = system; + return this; + } + + /** + * The name of the storage system as configured in ScaleIO. + * @return system + **/ + @ApiModelProperty(required = true, value = "The name of the storage system as configured in ScaleIO.") + public String getSystem() { + return system; + } + + public void setSystem(String system) { + this.system = system; + } + + public V1ScaleIOPersistentVolumeSource volumeName(String volumeName) { + this.volumeName = volumeName; + return this; + } + + /** + * The name of a volume already created in the ScaleIO system that is associated with this volume source. + * @return volumeName + **/ + @ApiModelProperty(value = "The name of a volume already created in the ScaleIO system that is associated with this volume source.") + public String getVolumeName() { + return volumeName; + } + + public void setVolumeName(String volumeName) { + this.volumeName = volumeName; + } + + + @Override + public boolean equals(java.lang.Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + V1ScaleIOPersistentVolumeSource v1ScaleIOPersistentVolumeSource = (V1ScaleIOPersistentVolumeSource) o; + return Objects.equals(this.fsType, v1ScaleIOPersistentVolumeSource.fsType) && + Objects.equals(this.gateway, v1ScaleIOPersistentVolumeSource.gateway) && + Objects.equals(this.protectionDomain, v1ScaleIOPersistentVolumeSource.protectionDomain) && + Objects.equals(this.readOnly, v1ScaleIOPersistentVolumeSource.readOnly) && + Objects.equals(this.secretRef, v1ScaleIOPersistentVolumeSource.secretRef) && + Objects.equals(this.sslEnabled, v1ScaleIOPersistentVolumeSource.sslEnabled) && + Objects.equals(this.storageMode, v1ScaleIOPersistentVolumeSource.storageMode) && + Objects.equals(this.storagePool, v1ScaleIOPersistentVolumeSource.storagePool) && + Objects.equals(this.system, v1ScaleIOPersistentVolumeSource.system) && + Objects.equals(this.volumeName, v1ScaleIOPersistentVolumeSource.volumeName); + } + + @Override + public int hashCode() { + return Objects.hash(fsType, gateway, protectionDomain, readOnly, secretRef, sslEnabled, storageMode, storagePool, system, volumeName); + } + + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class V1ScaleIOPersistentVolumeSource {\n"); + + sb.append(" fsType: ").append(toIndentedString(fsType)).append("\n"); + sb.append(" gateway: ").append(toIndentedString(gateway)).append("\n"); + sb.append(" protectionDomain: ").append(toIndentedString(protectionDomain)).append("\n"); + sb.append(" readOnly: ").append(toIndentedString(readOnly)).append("\n"); + sb.append(" secretRef: ").append(toIndentedString(secretRef)).append("\n"); + sb.append(" sslEnabled: ").append(toIndentedString(sslEnabled)).append("\n"); + sb.append(" storageMode: ").append(toIndentedString(storageMode)).append("\n"); + sb.append(" storagePool: ").append(toIndentedString(storagePool)).append("\n"); + sb.append(" system: ").append(toIndentedString(system)).append("\n"); + sb.append(" volumeName: ").append(toIndentedString(volumeName)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(java.lang.Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleIOVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleIOVolumeSource.java index 00759a6a01..f2376d4524 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleIOVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleIOVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -102,10 +103,10 @@ public V1ScaleIOVolumeSource protectionDomain(String protectionDomain) { } /** - * The name of the Protection Domain for the configured storage (defaults to \"default\"). + * The name of the ScaleIO Protection Domain for the configured storage. * @return protectionDomain **/ - @ApiModelProperty(value = "The name of the Protection Domain for the configured storage (defaults to \"default\").") + @ApiModelProperty(value = "The name of the ScaleIO Protection Domain for the configured storage.") public String getProtectionDomain() { return protectionDomain; } @@ -174,10 +175,10 @@ public V1ScaleIOVolumeSource storageMode(String storageMode) { } /** - * Indicates whether the storage for a volume should be thick or thin (defaults to \"thin\"). + * Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. * @return storageMode **/ - @ApiModelProperty(value = "Indicates whether the storage for a volume should be thick or thin (defaults to \"thin\").") + @ApiModelProperty(value = "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.") public String getStorageMode() { return storageMode; } @@ -192,10 +193,10 @@ public V1ScaleIOVolumeSource storagePool(String storagePool) { } /** - * The Storage Pool associated with the protection domain (defaults to \"default\"). + * The ScaleIO Storage Pool associated with the protection domain. * @return storagePool **/ - @ApiModelProperty(value = "The Storage Pool associated with the protection domain (defaults to \"default\").") + @ApiModelProperty(value = "The ScaleIO Storage Pool associated with the protection domain.") public String getStoragePool() { return storagePool; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleSpec.java index 97909c8ff3..43111c840f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleStatus.java index bdd88047d1..fe09cfc7b3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ScaleStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Secret.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Secret.java index d60915be63..8c8a6369bb 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Secret.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Secret.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretEnvSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretEnvSource.java index 84c40bed73..44dd1a4c6a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretEnvSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretEnvSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretKeySelector.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretKeySelector.java index 169f819712..b9dfd21f22 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretKeySelector.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretKeySelector.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretList.java index 0a579b6de4..a84e3f570a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretProjection.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretProjection.java index c4b2fda399..fbebbe6300 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretProjection.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretProjection.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretReference.java index 0f297ec2c5..2fd67fa38c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretVolumeSource.java index 65a8547c04..32d8327051 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecretVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecurityContext.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecurityContext.java index 5be90e09d9..5425a91e7d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SecurityContext.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SecurityContext.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReview.java index 3f99045b12..d8d199d1a3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReviewSpec.java index 037dba74c0..63c57a22fe 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectAccessReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReview.java index 460d1dddb1..25cd511dec 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReviewSpec.java index 5d57255dd2..113782ef2d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SelfSubjectRulesReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServerAddressByClientCIDR.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServerAddressByClientCIDR.java index cefbdd39d9..ec122012c8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServerAddressByClientCIDR.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServerAddressByClientCIDR.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Service.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Service.java index 7ea403da95..2c88ecc933 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Service.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Service.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccount.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccount.java index fae6554531..f4e97ebe54 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccount.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccount.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccountList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccountList.java index 3540dbf5a5..9e21387772 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccountList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceAccountList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceList.java index 4eeedf2734..746c7afa23 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServicePort.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServicePort.java index d52cebbbcd..174d6be427 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServicePort.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServicePort.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -43,7 +43,7 @@ public class V1ServicePort { private String protocol = null; @SerializedName("targetPort") - private IntOrString targetPort = null; + private String targetPort = null; public V1ServicePort name(String name) { this.name = name; @@ -117,7 +117,7 @@ public void setProtocol(String protocol) { this.protocol = protocol; } - public V1ServicePort targetPort(IntOrString targetPort) { + public V1ServicePort targetPort(String targetPort) { this.targetPort = targetPort; return this; } @@ -127,11 +127,11 @@ public V1ServicePort targetPort(IntOrString targetPort) { * @return targetPort **/ @ApiModelProperty(value = "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service") - public IntOrString getTargetPort() { + public String getTargetPort() { return targetPort; } - public void setTargetPort(IntOrString targetPort) { + public void setTargetPort(String targetPort) { this.targetPort = targetPort; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceSpec.java index c7647d9f8c..4d78dce547 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceStatus.java index df7ea71933..eb04cc6dae 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1ServiceStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SessionAffinityConfig.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SessionAffinityConfig.java index 586c22ed32..16f687bc98 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SessionAffinityConfig.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SessionAffinityConfig.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Status.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Status.java index d210cec72c..a17d00a9dc 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Status.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Status.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusCause.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusCause.java index e4538fe281..25a46e9af3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusCause.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusCause.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusDetails.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusDetails.java index 876771da1e..f6debdbc65 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusDetails.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1StatusDetails.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClass.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClass.java index 162a5ddb9e..f159a91556 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClass.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClass.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClassList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClassList.java index e9cd6931f1..d3bc5b1e3e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClassList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageClassList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSPersistentVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSPersistentVolumeSource.java index a21de1eafb..1be5fc2dc0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSPersistentVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSPersistentVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSVolumeSource.java index 2023837afe..73e993c85b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1StorageOSVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Subject.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Subject.java index 3db7835cee..d28e76e4b2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Subject.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Subject.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReview.java index 2c8f60581a..e98fb88145 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewSpec.java index ff24d9223a..a2a7e674c3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewStatus.java index 9eb2169e8a..8dacd1a314 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectAccessReviewStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectRulesReviewStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectRulesReviewStatus.java index 22bbdb38b6..41dc9b8e5d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectRulesReviewStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1SubjectRulesReviewStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1TCPSocketAction.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1TCPSocketAction.java index d3bdbdd760..fe60217aad 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1TCPSocketAction.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1TCPSocketAction.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -34,7 +34,7 @@ public class V1TCPSocketAction { private String host = null; @SerializedName("port") - private IntOrString port = null; + private String port = null; public V1TCPSocketAction host(String host) { this.host = host; @@ -54,7 +54,7 @@ public void setHost(String host) { this.host = host; } - public V1TCPSocketAction port(IntOrString port) { + public V1TCPSocketAction port(String port) { this.port = port; return this; } @@ -64,11 +64,11 @@ public V1TCPSocketAction port(IntOrString port) { * @return port **/ @ApiModelProperty(required = true, value = "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.") - public IntOrString getPort() { + public String getPort() { return port; } - public void setPort(IntOrString port) { + public void setPort(String port) { this.port = port; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Taint.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Taint.java index 051788b630..7fdb8987bd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Taint.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Taint.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReview.java index d906d1c1c0..dc9f31e899 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewSpec.java index c74508a900..2682d29bf9 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewStatus.java index 74726678e0..8afb1dfc2e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1TokenReviewStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Toleration.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Toleration.java index 66af98c7d4..d86ac1e6ab 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Toleration.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Toleration.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1UserInfo.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1UserInfo.java index 81f9a9c09f..397261f328 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1UserInfo.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1UserInfo.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1Volume.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1Volume.java index 49ed980ad1..8e0fc9b78d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1Volume.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1Volume.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeMount.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeMount.java index 1f88a117fb..a94261baff 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeMount.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeMount.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeProjection.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeProjection.java index f288b46345..37de149231 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeProjection.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1VolumeProjection.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1VsphereVirtualDiskVolumeSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1VsphereVirtualDiskVolumeSource.java index 2c565ede59..873613a4a1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1VsphereVirtualDiskVolumeSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1VsphereVirtualDiskVolumeSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1WatchEvent.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1WatchEvent.java index 34ee5e4be8..c97fe07c67 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1WatchEvent.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1WatchEvent.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1WeightedPodAffinityTerm.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1WeightedPodAffinityTerm.java index 52b09ede2a..1e144d8650 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1WeightedPodAffinityTerm.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1WeightedPodAffinityTerm.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1AdmissionHookClientConfig.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1AdmissionHookClientConfig.java index e8bb1f1087..5207da8bc0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1AdmissionHookClientConfig.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1AdmissionHookClientConfig.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -82,13 +83,13 @@ public boolean equals(java.lang.Object o) { return false; } V1alpha1AdmissionHookClientConfig v1alpha1AdmissionHookClientConfig = (V1alpha1AdmissionHookClientConfig) o; - return Objects.equals(this.caBundle, v1alpha1AdmissionHookClientConfig.caBundle) && + return Arrays.equals(this.caBundle, v1alpha1AdmissionHookClientConfig.caBundle) && Objects.equals(this.service, v1alpha1AdmissionHookClientConfig.service); } @Override public int hashCode() { - return Objects.hash(caBundle, service); + return Objects.hash(Arrays.hashCode(caBundle), service); } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRole.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRole.java index a29ffdc2aa..5e6bf759a7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRole.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRole.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBinding.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBinding.java index 7f660a3040..946693af68 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBinding.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBinding.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBindingList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBindingList.java index 755f48109a..556ec22e98 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBindingList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleBindingList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleList.java index 3330dfb23e..973965b613 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ClusterRoleList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHook.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHook.java index 3a441dd1a2..a312b6dc8f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHook.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHook.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfiguration.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfiguration.java index 9ed969e82f..d00f7ffd0c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfiguration.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfiguration.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfigurationList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfigurationList.java index 091a976c16..bac87dd5cf 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfigurationList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ExternalAdmissionHookConfigurationList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Initializer.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Initializer.java index 516b783ec3..21e54592c6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Initializer.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Initializer.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfiguration.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfiguration.java index b850b05731..624caebf3b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfiguration.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfiguration.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfigurationList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfigurationList.java index e532603746..3f0471e1d0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfigurationList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1InitializerConfigurationList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPreset.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPreset.java index 83e0244051..6dd2317387 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPreset.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPreset.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetList.java index e1aa04254c..68611a986e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetSpec.java index a8140664d4..45a0e56cd2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PodPresetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PolicyRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PolicyRule.java index f4776b0bf2..a261c51858 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PolicyRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PolicyRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClass.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClass.java index ac0ba80ccc..01c8f188ef 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClass.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClass.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClassList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClassList.java index a8a72e0e4e..52d651f723 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClassList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1PriorityClassList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Role.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Role.java index 497bf4b8a9..fd1cb05a2f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Role.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Role.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBinding.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBinding.java index 4a6fb14db8..4e46d18212 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBinding.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBinding.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBindingList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBindingList.java index 55bb503acb..55a10b9e24 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBindingList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleBindingList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleList.java index 2deed6033e..b1383a32cd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleRef.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleRef.java index 863ddf66f5..f381047947 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleRef.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RoleRef.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Rule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Rule.java index cddd3df2c5..d03b2145ac 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Rule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Rule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RuleWithOperations.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RuleWithOperations.java index 52ae2fd5a9..66d3e4c7f3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RuleWithOperations.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1RuleWithOperations.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ServiceReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ServiceReference.java index 765cf48357..bd511e4fe1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ServiceReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1ServiceReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Subject.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Subject.java index 276b42a9f9..7e70560184 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Subject.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1alpha1Subject.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIService.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIService.java index 78b3beae6a..ae543cdbb7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIService.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIService.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceCondition.java index a2c733d0ea..f768b14e61 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceList.java index 395cb147ee..8542f64926 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceSpec.java index aceb7224d8..cf3305a312 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -187,7 +188,7 @@ public boolean equals(java.lang.Object o) { return false; } V1beta1APIServiceSpec v1beta1APIServiceSpec = (V1beta1APIServiceSpec) o; - return Objects.equals(this.caBundle, v1beta1APIServiceSpec.caBundle) && + return Arrays.equals(this.caBundle, v1beta1APIServiceSpec.caBundle) && Objects.equals(this.group, v1beta1APIServiceSpec.group) && Objects.equals(this.groupPriorityMinimum, v1beta1APIServiceSpec.groupPriorityMinimum) && Objects.equals(this.insecureSkipTLSVerify, v1beta1APIServiceSpec.insecureSkipTLSVerify) && @@ -198,7 +199,7 @@ public boolean equals(java.lang.Object o) { @Override public int hashCode() { - return Objects.hash(caBundle, group, groupPriorityMinimum, insecureSkipTLSVerify, service, version, versionPriority); + return Objects.hash(Arrays.hashCode(caBundle), group, groupPriorityMinimum, insecureSkipTLSVerify, service, version, versionPriority); } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceStatus.java index 4ca83e4b51..0efaea3d9e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1APIServiceStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1AllowedHostPath.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1AllowedHostPath.java index 4973da45a0..deec4935fa 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1AllowedHostPath.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1AllowedHostPath.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequest.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequest.java index 553b9bd505..85b9368d22 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequest.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestCondition.java index 6e68f178f3..14de10cc15 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestList.java index 697abd8456..a02110d4c7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestSpec.java index f51dabd4ca..5207925f2e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -195,7 +196,7 @@ public boolean equals(java.lang.Object o) { V1beta1CertificateSigningRequestSpec v1beta1CertificateSigningRequestSpec = (V1beta1CertificateSigningRequestSpec) o; return Objects.equals(this.extra, v1beta1CertificateSigningRequestSpec.extra) && Objects.equals(this.groups, v1beta1CertificateSigningRequestSpec.groups) && - Objects.equals(this.request, v1beta1CertificateSigningRequestSpec.request) && + Arrays.equals(this.request, v1beta1CertificateSigningRequestSpec.request) && Objects.equals(this.uid, v1beta1CertificateSigningRequestSpec.uid) && Objects.equals(this.usages, v1beta1CertificateSigningRequestSpec.usages) && Objects.equals(this.username, v1beta1CertificateSigningRequestSpec.username); @@ -203,7 +204,7 @@ public boolean equals(java.lang.Object o) { @Override public int hashCode() { - return Objects.hash(extra, groups, request, uid, usages, username); + return Objects.hash(extra, groups, Arrays.hashCode(request), uid, usages, username); } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestStatus.java index c772217e6f..3690da18f3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CertificateSigningRequestStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -91,13 +92,13 @@ public boolean equals(java.lang.Object o) { return false; } V1beta1CertificateSigningRequestStatus v1beta1CertificateSigningRequestStatus = (V1beta1CertificateSigningRequestStatus) o; - return Objects.equals(this.certificate, v1beta1CertificateSigningRequestStatus.certificate) && + return Arrays.equals(this.certificate, v1beta1CertificateSigningRequestStatus.certificate) && Objects.equals(this.conditions, v1beta1CertificateSigningRequestStatus.conditions); } @Override public int hashCode() { - return Objects.hash(certificate, conditions); + return Objects.hash(Arrays.hashCode(certificate), conditions); } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRole.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRole.java index 798746b0cb..1f51599188 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRole.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRole.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBinding.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBinding.java index 1690c51542..94966c2eba 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBinding.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBinding.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBindingList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBindingList.java index 418d73db4a..9fe9fcad0f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBindingList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleBindingList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleList.java index eaefe14819..d2bf9be5ec 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ClusterRoleList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevision.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevision.java index 157b48a0c2..3f7eb9dec1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevision.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevision.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevisionList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevisionList.java index d28ae7f5b9..122d29ad6c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevisionList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ControllerRevisionList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJob.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJob.java index 6cc07ffe8f..53ddd2f753 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJob.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJob.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobList.java index 66d8e1c0ba..ef3957799c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobSpec.java index 8586aa6e42..095d8e591e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobStatus.java index 69e8578d4e..e4e9d3ab2b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CronJobStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinition.java index 500c765364..9b48d1c84f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionCondition.java index 27c3d5a126..4667223f80 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionList.java index 7ee551db3f..d7a5bf4548 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionNames.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionNames.java index 188029704b..e676b55a72 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionNames.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionNames.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionSpec.java index bb15a66cb7..ae16e1fdd7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionStatus.java index 958e5e6d58..a58d408008 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceDefinitionStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceValidation.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceValidation.java index 8a0fc958b5..4cea71ca02 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceValidation.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1CustomResourceValidation.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSet.java index 932d59c437..c66f8df125 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetList.java index a0c368c40e..975a12aa3d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetSpec.java index d43286b713..fbd76e0a43 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetStatus.java index 1c7e73fcd8..258816ca31 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetUpdateStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetUpdateStrategy.java index 491728f9ad..1edd2910b4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetUpdateStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1DaemonSetUpdateStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Eviction.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Eviction.java index d71519fcc3..b0b1bacbf8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Eviction.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Eviction.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ExternalDocumentation.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ExternalDocumentation.java index 1eb8895f45..40f7551f70 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ExternalDocumentation.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ExternalDocumentation.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1FSGroupStrategyOptions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1FSGroupStrategyOptions.java index 7fcafa8b3c..d55907cde7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1FSGroupStrategyOptions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1FSGroupStrategyOptions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressPath.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressPath.java index 6c2de77830..55e9aea1a3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressPath.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressPath.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressRuleValue.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressRuleValue.java index 07e7e4fd0a..1bab64cce4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressRuleValue.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HTTPIngressRuleValue.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HostPortRange.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HostPortRange.java index 908c0cbe62..1d29f9be65 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HostPortRange.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1HostPortRange.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IDRange.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IDRange.java index c321f48d93..092f49f200 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IDRange.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IDRange.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IPBlock.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IPBlock.java index 50101851e0..37819172fe 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IPBlock.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IPBlock.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Ingress.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Ingress.java index 5ef9e25375..56268220d0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Ingress.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Ingress.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressBackend.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressBackend.java index 7fcc9ef399..e80df1ea64 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressBackend.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressBackend.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -34,7 +34,7 @@ public class V1beta1IngressBackend { private String serviceName = null; @SerializedName("servicePort") - private IntOrString servicePort = null; + private String servicePort = null; public V1beta1IngressBackend serviceName(String serviceName) { this.serviceName = serviceName; @@ -54,7 +54,7 @@ public void setServiceName(String serviceName) { this.serviceName = serviceName; } - public V1beta1IngressBackend servicePort(IntOrString servicePort) { + public V1beta1IngressBackend servicePort(String servicePort) { this.servicePort = servicePort; return this; } @@ -64,11 +64,11 @@ public V1beta1IngressBackend servicePort(IntOrString servicePort) { * @return servicePort **/ @ApiModelProperty(required = true, value = "Specifies the port of the referenced service.") - public IntOrString getServicePort() { + public String getServicePort() { return servicePort; } - public void setServicePort(IntOrString servicePort) { + public void setServicePort(String servicePort) { this.servicePort = servicePort; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressList.java index cab0601639..f4de819346 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressRule.java index c5ea35d758..8b809c1357 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressSpec.java index 316bc18b67..9d9db5a7c3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressStatus.java index 251b95501b..c1dea70838 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressTLS.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressTLS.java index 9ddb1bf152..eed089066b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressTLS.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1IngressTLS.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSON.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSON.java index 320b9992dc..cf09b0911c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSON.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSON.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -60,12 +61,12 @@ public boolean equals(java.lang.Object o) { return false; } V1beta1JSON v1beta1JSON = (V1beta1JSON) o; - return Objects.equals(this.raw, v1beta1JSON.raw); + return Arrays.equals(this.raw, v1beta1JSON.raw); } @Override public int hashCode() { - return Objects.hash(raw); + return Objects.hash(Arrays.hashCode(raw)); } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaProps.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaProps.java index 032443e7d6..e3f7b7c976 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaProps.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaProps.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrArray.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrArray.java index c6c4c0f238..46c108ad60 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrArray.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrArray.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrBool.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrBool.java index 89ae6e7158..f9c87e4f7a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrBool.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrBool.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrStringArray.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrStringArray.java index bdbea08f5b..671defecff 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrStringArray.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JSONSchemaPropsOrStringArray.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JobTemplateSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JobTemplateSpec.java index f7aefc75af..8554d919b0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JobTemplateSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1JobTemplateSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1LocalSubjectAccessReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1LocalSubjectAccessReview.java index 72045c4b78..3da5743c9b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1LocalSubjectAccessReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1LocalSubjectAccessReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicy.java index caa1fd5779..2d7c881a48 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyEgressRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyEgressRule.java index 6c397e2aa8..99bd7fa1a5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyEgressRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyEgressRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyIngressRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyIngressRule.java index 0ee48aedbe..42412a5685 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyIngressRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyIngressRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyList.java index 35ef1a99b4..511cb62f22 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPeer.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPeer.java index 2f7cebbe76..dd99471b84 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPeer.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPeer.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPort.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPort.java index 06aec058d5..34ba8a76fd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPort.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicyPort.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -30,12 +30,12 @@ public class V1beta1NetworkPolicyPort { @SerializedName("port") - private IntOrString port = null; + private String port = null; @SerializedName("protocol") private String protocol = null; - public V1beta1NetworkPolicyPort port(IntOrString port) { + public V1beta1NetworkPolicyPort port(String port) { this.port = port; return this; } @@ -45,11 +45,11 @@ public V1beta1NetworkPolicyPort port(IntOrString port) { * @return port **/ @ApiModelProperty(value = "If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.") - public IntOrString getPort() { + public String getPort() { return port; } - public void setPort(IntOrString port) { + public void setPort(String port) { this.port = port; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicySpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicySpec.java index d75cc6e3d5..7c5a2e149b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicySpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NetworkPolicySpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceAttributes.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceAttributes.java index 8cc664ca09..b14e72629d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceAttributes.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceAttributes.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceRule.java index b582cca7ef..ebde868110 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1NonResourceRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudget.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudget.java index cc9416ae5f..a31a3971e0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudget.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudget.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetList.java index 493f027a6e..1739dfc5fd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetSpec.java index e5bbec49e6..f8574957cd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.kubernetes.client.models.V1LabelSelector; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -32,15 +32,15 @@ public class V1beta1PodDisruptionBudgetSpec { @SerializedName("maxUnavailable") - private IntOrString maxUnavailable = null; + private String maxUnavailable = null; @SerializedName("minAvailable") - private IntOrString minAvailable = null; + private String minAvailable = null; @SerializedName("selector") private V1LabelSelector selector = null; - public V1beta1PodDisruptionBudgetSpec maxUnavailable(IntOrString maxUnavailable) { + public V1beta1PodDisruptionBudgetSpec maxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; return this; } @@ -50,15 +50,15 @@ public V1beta1PodDisruptionBudgetSpec maxUnavailable(IntOrString maxUnavailable) * @return maxUnavailable **/ @ApiModelProperty(value = "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".") - public IntOrString getMaxUnavailable() { + public String getMaxUnavailable() { return maxUnavailable; } - public void setMaxUnavailable(IntOrString maxUnavailable) { + public void setMaxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; } - public V1beta1PodDisruptionBudgetSpec minAvailable(IntOrString minAvailable) { + public V1beta1PodDisruptionBudgetSpec minAvailable(String minAvailable) { this.minAvailable = minAvailable; return this; } @@ -68,11 +68,11 @@ public V1beta1PodDisruptionBudgetSpec minAvailable(IntOrString minAvailable) { * @return minAvailable **/ @ApiModelProperty(value = "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\".") - public IntOrString getMinAvailable() { + public String getMinAvailable() { return minAvailable; } - public void setMinAvailable(IntOrString minAvailable) { + public void setMinAvailable(String minAvailable) { this.minAvailable = minAvailable; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetStatus.java index 8c56a473ac..9a8a43a0ff 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodDisruptionBudgetStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicy.java index 928fceaac3..e592da8c3b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicyList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicyList.java index 7bdf55a6f4..08c0a8c637 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicyList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicyList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicySpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicySpec.java index 4fc157f393..c239dcd5f0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicySpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PodSecurityPolicySpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PolicyRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PolicyRule.java index 64371f0aa0..ca3a9616e0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PolicyRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1PolicyRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSet.java index abf20b48c5..5207661a60 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetCondition.java index 2d35aef151..c5b69e8446 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetList.java index 9c3e60bba6..8503befd05 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetSpec.java index 9af0d0d6ef..f2ba365050 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetStatus.java index 3c73c2cea2..e54a5a60b2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ReplicaSetStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceAttributes.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceAttributes.java index ba966f9160..e2fdb5d44e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceAttributes.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceAttributes.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceRule.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceRule.java index 708be16af9..a999a410ee 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceRule.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ResourceRule.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Role.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Role.java index b828e500d6..e9cd50b31d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Role.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Role.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBinding.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBinding.java index e822e17b58..4711ce59ca 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBinding.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBinding.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBindingList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBindingList.java index fa331a389e..05730bd76c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBindingList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleBindingList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleList.java index 3c1d8f4d9a..87dd808df2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleRef.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleRef.java index 2b5f43a650..2894995b3d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleRef.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RoleRef.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateDaemonSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateDaemonSet.java index e2a98e4907..db8002611d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateDaemonSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateDaemonSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -31,9 +31,9 @@ public class V1beta1RollingUpdateDaemonSet { @SerializedName("maxUnavailable") - private IntOrString maxUnavailable = null; + private String maxUnavailable = null; - public V1beta1RollingUpdateDaemonSet maxUnavailable(IntOrString maxUnavailable) { + public V1beta1RollingUpdateDaemonSet maxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; return this; } @@ -43,11 +43,11 @@ public V1beta1RollingUpdateDaemonSet maxUnavailable(IntOrString maxUnavailable) * @return maxUnavailable **/ @ApiModelProperty(value = "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.") - public IntOrString getMaxUnavailable() { + public String getMaxUnavailable() { return maxUnavailable; } - public void setMaxUnavailable(IntOrString maxUnavailable) { + public void setMaxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateStatefulSetStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateStatefulSetStrategy.java index f1e8d0173b..6c1d0d59af 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateStatefulSetStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RollingUpdateStatefulSetStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RunAsUserStrategyOptions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RunAsUserStrategyOptions.java index affa8ad912..824c8a55b4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RunAsUserStrategyOptions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1RunAsUserStrategyOptions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SELinuxStrategyOptions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SELinuxStrategyOptions.java index 424bac788d..c6419fbeb9 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SELinuxStrategyOptions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SELinuxStrategyOptions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReview.java index 009a11c244..4878fce582 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReviewSpec.java index 7493693bb4..648024562b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectAccessReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReview.java index a67609a661..e2268a6e35 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReviewSpec.java index f41f818a5e..fd71be489f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SelfSubjectRulesReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ServiceReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ServiceReference.java index a5824cbabb..63eafc50a1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ServiceReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1ServiceReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSet.java index cf3c613806..ab69b7b8c2 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetList.java index 6402cdb2d8..ba7a5335d4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetSpec.java index a4472e280c..fb09ff7bef 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetStatus.java index b59c2e3755..fe96c449cd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetUpdateStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetUpdateStrategy.java index f566f4f0bd..253ece509a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetUpdateStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StatefulSetUpdateStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClass.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClass.java index 59b46423f7..048ca88538 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClass.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClass.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClassList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClassList.java index 2b25efa668..7bd402af6c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClassList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1StorageClassList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Subject.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Subject.java index 43ca941a86..29b393c836 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Subject.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1Subject.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReview.java index 137587eef6..8af0dc93e1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewSpec.java index e079de0430..ccc64deccd 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewStatus.java index 9ff8d83b18..e4a4bf7ce4 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectAccessReviewStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectRulesReviewStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectRulesReviewStatus.java index a1575637e4..96102af82d 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectRulesReviewStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SubjectRulesReviewStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SupplementalGroupsStrategyOptions.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SupplementalGroupsStrategyOptions.java index 5a4d5204a6..87803727ca 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SupplementalGroupsStrategyOptions.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1SupplementalGroupsStrategyOptions.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReview.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReview.java index 2566464f69..8892cc8b33 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReview.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReview.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewSpec.java index c4d592678d..fd0068c361 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewStatus.java index e65ac478d1..9c0c095ebf 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1TokenReviewStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1UserInfo.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1UserInfo.java index a1aa75a2c8..04ca5ecf32 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1UserInfo.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta1UserInfo.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevision.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevision.java index 2168fb77b3..2f1a60fb13 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevision.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevision.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevisionList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevisionList.java index f4ae5f3116..1e0baa7f9f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevisionList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ControllerRevisionList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSet.java index cc5915736f..4e8faa0c14 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetList.java index e18d816818..3c22a8acd1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetSpec.java index de2f55f4b6..68080d7c1c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -89,10 +90,10 @@ public V1beta2DaemonSetSpec selector(V1LabelSelector selector) { } /** - * A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors * @return selector **/ - @ApiModelProperty(value = "A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors") + @ApiModelProperty(required = true, value = "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors") public V1LabelSelector getSelector() { return selector; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetStatus.java index 73bd571898..2b3fa9e3df 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetUpdateStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetUpdateStrategy.java index 76fec16abb..5e36247ad8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetUpdateStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DaemonSetUpdateStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Deployment.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Deployment.java index f9aeed119e..58edda8e9b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Deployment.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Deployment.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentCondition.java index d77435b241..d8c0f432fa 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentList.java index 05bb4aaaa7..eb39e6836f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentSpec.java index 62b41d4bfe..3f77187de8 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -152,10 +153,10 @@ public V1beta2DeploymentSpec selector(V1LabelSelector selector) { } /** - * Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. + * Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels. * @return selector **/ - @ApiModelProperty(value = "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.") + @ApiModelProperty(required = true, value = "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.") public V1LabelSelector getSelector() { return selector; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStatus.java index a3079f2509..84d9b5b599 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStrategy.java index 676579f821..1836568e7f 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2DeploymentStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSet.java index d50baa2cf1..0c5709bcb7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetCondition.java index b242742cc2..ee71cb5f29 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetList.java index c06ebca46f..22229d3fe9 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetSpec.java index a50132434f..6b340edc3e 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -85,10 +86,10 @@ public V1beta2ReplicaSetSpec selector(V1LabelSelector selector) { } /** - * Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors * @return selector **/ - @ApiModelProperty(value = "Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors") + @ApiModelProperty(required = true, value = "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors") public V1LabelSelector getSelector() { return selector; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetStatus.java index 88a0d7436c..5b04ecf377 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ReplicaSetStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDaemonSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDaemonSet.java index 1516d4de6a..a2c2485ab5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDaemonSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDaemonSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -31,9 +31,9 @@ public class V1beta2RollingUpdateDaemonSet { @SerializedName("maxUnavailable") - private IntOrString maxUnavailable = null; + private String maxUnavailable = null; - public V1beta2RollingUpdateDaemonSet maxUnavailable(IntOrString maxUnavailable) { + public V1beta2RollingUpdateDaemonSet maxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; return this; } @@ -43,11 +43,11 @@ public V1beta2RollingUpdateDaemonSet maxUnavailable(IntOrString maxUnavailable) * @return maxUnavailable **/ @ApiModelProperty(value = "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.") - public IntOrString getMaxUnavailable() { + public String getMaxUnavailable() { return maxUnavailable; } - public void setMaxUnavailable(IntOrString maxUnavailable) { + public void setMaxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDeployment.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDeployment.java index 5013b618a2..db34ad38a0 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDeployment.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateDeployment.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,12 +14,12 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonWriter; -import io.kubernetes.client.custom.IntOrString; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; @@ -31,12 +31,12 @@ public class V1beta2RollingUpdateDeployment { @SerializedName("maxSurge") - private IntOrString maxSurge = null; + private String maxSurge = null; @SerializedName("maxUnavailable") - private IntOrString maxUnavailable = null; + private String maxUnavailable = null; - public V1beta2RollingUpdateDeployment maxSurge(IntOrString maxSurge) { + public V1beta2RollingUpdateDeployment maxSurge(String maxSurge) { this.maxSurge = maxSurge; return this; } @@ -46,15 +46,15 @@ public V1beta2RollingUpdateDeployment maxSurge(IntOrString maxSurge) { * @return maxSurge **/ @ApiModelProperty(value = "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 RC 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 RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.") - public IntOrString getMaxSurge() { + public String getMaxSurge() { return maxSurge; } - public void setMaxSurge(IntOrString maxSurge) { + public void setMaxSurge(String maxSurge) { this.maxSurge = maxSurge; } - public V1beta2RollingUpdateDeployment maxUnavailable(IntOrString maxUnavailable) { + public V1beta2RollingUpdateDeployment maxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; return this; } @@ -64,11 +64,11 @@ public V1beta2RollingUpdateDeployment maxUnavailable(IntOrString maxUnavailable) * @return maxUnavailable **/ @ApiModelProperty(value = "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 RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.") - public IntOrString getMaxUnavailable() { + public String getMaxUnavailable() { return maxUnavailable; } - public void setMaxUnavailable(IntOrString maxUnavailable) { + public void setMaxUnavailable(String maxUnavailable) { this.maxUnavailable = maxUnavailable; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateStatefulSetStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateStatefulSetStrategy.java index d4bf7cbf97..abd42cdd77 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateStatefulSetStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2RollingUpdateStatefulSetStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Scale.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Scale.java index 95b49f03a9..d07dd9a744 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Scale.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2Scale.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleSpec.java index 8d4ba9ac87..c63e57927b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleStatus.java index 4838c6f0d9..da76332d12 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2ScaleStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSet.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSet.java index 8d373eaca8..7660d07b8a 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSet.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSet.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetList.java index e327b9b64c..bbfe89eb42 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetSpec.java index 5dcd1ceafa..541a0e6f54 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -119,10 +120,10 @@ public V1beta2StatefulSetSpec selector(V1LabelSelector selector) { } /** - * selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors + * selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors * @return selector **/ - @ApiModelProperty(value = "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors") + @ApiModelProperty(required = true, value = "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors") public V1LabelSelector getSelector() { return selector; } diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetStatus.java index 2993607f0a..44a53b9cda 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetUpdateStrategy.java b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetUpdateStrategy.java index fc9f61f714..4b26f9b403 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetUpdateStrategy.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V1beta2StatefulSetUpdateStrategy.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJob.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJob.java index 4d19e675ba..d7e707fdaa 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJob.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJob.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobList.java index bf5c394154..e8828748b1 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobSpec.java index 2f8b6b9fe5..d9750dd017 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobStatus.java index 4a5efbf103..cca6723bf9 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1CronJobStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1JobTemplateSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1JobTemplateSpec.java index 997665e41d..a0b61c4525 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1JobTemplateSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2alpha1JobTemplateSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1CrossVersionObjectReference.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1CrossVersionObjectReference.java index ca12df7370..0fdb0340fb 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1CrossVersionObjectReference.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1CrossVersionObjectReference.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscaler.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscaler.java index 2083aa5d01..40f143a3ce 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscaler.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscaler.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerCondition.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerCondition.java index f54bc047dd..0b9da5596c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerCondition.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerCondition.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerList.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerList.java index 64302cce2d..8735fe5551 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerList.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerList.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerSpec.java index a12d0ecf7b..e6ae7bf8cf 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerStatus.java index 9cb2ef707d..3dcbe5b42c 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1HorizontalPodAutoscalerStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricSpec.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricSpec.java index 1557168223..61706c9ac6 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricSpec.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricSpec.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricStatus.java index 7d1147fd67..cb9dfc78c5 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1MetricStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricSource.java index 2eb37242fc..ceea6ab9f3 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricStatus.java index f966ab196a..b6489a0698 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ObjectMetricStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricSource.java index 632d9f0b7e..70ba0bf0be 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricStatus.java index ee37ced0c2..51f4682d5b 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1PodsMetricStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricSource.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricSource.java index 1ad24189ba..0b61f59dbf 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricSource.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricSource.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricStatus.java b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricStatus.java index a79fe4a465..ea3af75486 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricStatus.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/V2beta1ResourceMetricStatus.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/main/java/io/kubernetes/client/models/VersionInfo.java b/kubernetes/src/main/java/io/kubernetes/client/models/VersionInfo.java index 8fffa51e44..e2e8ab79e7 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/models/VersionInfo.java +++ b/kubernetes/src/main/java/io/kubernetes/client/models/VersionInfo.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -14,6 +14,7 @@ package io.kubernetes.client.models; import java.util.Objects; +import java.util.Arrays; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationApiTest.java index 7f49233627..e7c7d38b95 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1ApiTest.java index b19631af22..e6122bdccf 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AdmissionregistrationV1alpha1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsApiTest.java index 3982f559cf..d214527e0f 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsV1beta1ApiTest.java index 332ef56bfb..27f858d230 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiextensionsV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationApiTest.java index 74a3e86d45..52869f44f6 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationV1beta1ApiTest.java index 435b020705..e053117dcd 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/ApiregistrationV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/ApisApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/ApisApiTest.java index 45907e9d80..c22d494977 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/ApisApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/ApisApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AppsApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AppsApiTest.java index 0f32d4808c..da669e0b1b 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AppsApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AppsApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta1ApiTest.java index 9a84e2ce62..4b6cef83d6 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta2ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta2ApiTest.java index 4eb9d0ec40..58e425ee67 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta2ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AppsV1beta2ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationApiTest.java index cba3f7c13a..510ce70d71 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1ApiTest.java index c59f7a546e..235233e7d4 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1beta1ApiTest.java index dc6a0584a0..714e1b2ee5 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthenticationV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationApiTest.java index 05005789fa..922358db8f 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1ApiTest.java index ae7dbf041d..4fcb71fb28 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1beta1ApiTest.java index 8e60b13029..b9829e23ef 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AuthorizationV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingApiTest.java index 2366a6b79f..d5a7be9a0b 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV1ApiTest.java index 7dd1ffce8e..b99efed852 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV2beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV2beta1ApiTest.java index c173d4b980..375c91c5e3 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV2beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/AutoscalingV2beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchApiTest.java index 91636f879b..51f1699e11 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1ApiTest.java index b0142d1af6..a69811a8bf 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1beta1ApiTest.java index eb1b21c912..fb89c0b113 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV2alpha1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV2alpha1ApiTest.java index 15fa321033..ae9ef5f7a3 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV2alpha1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/BatchV2alpha1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesApiTest.java index 2d74049358..60eb61d796 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesV1beta1ApiTest.java index 68ef033f61..bf0c50a1f2 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/CertificatesV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/CoreApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/CoreApiTest.java index c467bc0a8a..8cd9d9d586 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/CoreApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/CoreApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/CoreV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/CoreV1ApiTest.java index d7d68607dc..429f6a7235 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/CoreV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/CoreV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/CustomObjectsApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/CustomObjectsApiTest.java index d2898e13c3..3dc7001c22 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/CustomObjectsApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/CustomObjectsApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. @@ -204,6 +204,47 @@ public void listNamespacedCustomObjectTest() throws ApiException { // TODO: test validations } + /** + * + * + * patch the specified cluster scoped custom object + * + * @throws ApiException + * if the Api call fails + */ + @Test + public void patchClusterCustomObjectTest() throws ApiException { + String group = null; + String version = null; + String plural = null; + String name = null; + Object body = null; + Object response = api.patchClusterCustomObject(group, version, plural, name, body); + + // TODO: test validations + } + + /** + * + * + * patch the specified namespace scoped custom object + * + * @throws ApiException + * if the Api call fails + */ + @Test + public void patchNamespacedCustomObjectTest() throws ApiException { + String group = null; + String version = null; + String namespace = null; + String plural = null; + String name = null; + Object body = null; + Object response = api.patchNamespacedCustomObject(group, version, namespace, plural, name, body); + + // TODO: test validations + } + /** * * diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsApiTest.java index d16dd91f58..b4ac3617a8 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsV1beta1ApiTest.java index 3d0c87fa08..383dcd6758 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/ExtensionsV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/LogsApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/LogsApiTest.java index 493782bfc8..2dd0a314fe 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/LogsApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/LogsApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingApiTest.java index b8e96fc9f4..a05bc98acd 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingV1ApiTest.java index 5ab9c3b2fe..478a11ff85 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/NetworkingV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyApiTest.java index 3565e568c4..9457762378 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyV1beta1ApiTest.java index a18e7bae24..add8b3e677 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/PolicyV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationApiTest.java index 01d99ae6f1..003d69cbc9 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1ApiTest.java index e4253f62f5..da0e1ab0b2 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1ApiTest.java index 0ca17bab1d..1f9a5ebde4 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1alpha1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1ApiTest.java index 972718a64c..51a2cea3bb 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/RbacAuthorizationV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingApiTest.java index bf36ba7a0e..101bfb6d9f 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingV1alpha1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingV1alpha1ApiTest.java index 5d0663c004..508467d831 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingV1alpha1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/SchedulingV1alpha1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsApiTest.java index 18ad7bfc96..c9bc46436b 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsV1alpha1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsV1alpha1ApiTest.java index efff78a3f8..b56ebef597 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsV1alpha1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/SettingsV1alpha1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/StorageApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/StorageApiTest.java index b0660bfc5b..ba52112986 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/StorageApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/StorageApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1ApiTest.java index 0580ce59a6..c73e350667 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1beta1ApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1beta1ApiTest.java index c3631ca3db..30d6d45bf2 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1beta1ApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/StorageV1beta1ApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/src/test/java/io/kubernetes/client/apis/VersionApiTest.java b/kubernetes/src/test/java/io/kubernetes/client/apis/VersionApiTest.java index 5463ec1cd0..fb7eedf86c 100644 --- a/kubernetes/src/test/java/io/kubernetes/client/apis/VersionApiTest.java +++ b/kubernetes/src/test/java/io/kubernetes/client/apis/VersionApiTest.java @@ -2,7 +2,7 @@ * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * - * OpenAPI spec version: v1.8.4 + * OpenAPI spec version: v1.8.9 * * * NOTE: This class is auto generated by the swagger code generator program. diff --git a/kubernetes/swagger.json b/kubernetes/swagger.json index f979911704..6a1ae49aa9 100644 --- a/kubernetes/swagger.json +++ b/kubernetes/swagger.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "Kubernetes", - "version": "v1.8.4" + "version": "v1.8.9" }, "paths": { "/api/": { @@ -54394,6 +54394,44 @@ ], "operationId": "replaceClusterCustomObject" }, + "patch": { + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "object" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "schemes": [ + "https" + ], + "description": "patch the specified cluster scoped custom object", + "parameters": [ + { + "schema": { + "type": "object" + }, + "description": "The JSON schema of the Resource to patch.", + "required": true, + "name": "body", + "in": "body" + } + ], + "produces": [ + "application/json" + ], + "tags": [ + "custom_objects" + ], + "consumes": [ + "application/merge-patch+json" + ], + "operationId": "patchClusterCustomObject" + }, "delete": { "responses": { "200": { @@ -54549,6 +54587,44 @@ ], "operationId": "replaceNamespacedCustomObject" }, + "patch": { + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "object" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "schemes": [ + "https" + ], + "description": "patch the specified namespace scoped custom object", + "parameters": [ + { + "schema": { + "type": "object" + }, + "description": "The JSON schema of the Resource to patch.", + "required": true, + "name": "body", + "in": "body" + } + ], + "produces": [ + "application/json" + ], + "tags": [ + "custom_objects" + ], + "consumes": [ + "application/merge-patch+json" + ], + "operationId": "patchNamespacedCustomObject" + }, "delete": { "responses": { "200": { @@ -54790,14 +54866,14 @@ "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "capacity": { "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "conditions": { @@ -56194,7 +56270,7 @@ "description": "Hard is the set of desired hard limits for each named resource. More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "scopes": { @@ -56654,7 +56730,7 @@ "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "cephfs": { @@ -56734,7 +56810,7 @@ }, "scaleIO": { "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", - "$ref": "#/definitions/v1.ScaleIOVolumeSource" + "$ref": "#/definitions/v1.ScaleIOPersistentVolumeSource" }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", @@ -56864,6 +56940,7 @@ "v1beta2.StatefulSetSpec": { "description": "A StatefulSetSpec is the specification of a StatefulSet.", "required": [ + "selector", "template", "serviceName" ], @@ -56883,7 +56960,7 @@ "format": "int32" }, "selector": { - "description": "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", "$ref": "#/definitions/v1.LabelSelector" }, "serviceName": { @@ -57201,6 +57278,9 @@ }, "v1beta2.ReplicaSetSpec": { "description": "ReplicaSetSpec is the specification of a ReplicaSet.", + "required": [ + "selector" + ], "properties": { "minReadySeconds": { "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", @@ -57213,7 +57293,7 @@ "format": "int32" }, "selector": { - "description": "Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", "$ref": "#/definitions/v1.LabelSelector" }, "template": { @@ -57256,7 +57336,7 @@ "description": "Represents the actual resources of the underlying volume.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "conditions": { @@ -58872,35 +58952,35 @@ "description": "Default resource requirement limit value by resource name if resource limit is omitted.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "defaultRequest": { "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "max": { "description": "Max usage constraints on this kind by resource name.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "maxLimitRequestRatio": { "description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "min": { "description": "Min usage constraints on this kind by resource name.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "type": { @@ -59643,6 +59723,7 @@ "v1beta2.DaemonSetSpec": { "description": "DaemonSetSpec is the specification of a daemon set.", "required": [ + "selector", "template" ], "properties": { @@ -59657,7 +59738,7 @@ "format": "int32" }, "selector": { - "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", "$ref": "#/definitions/v1.LabelSelector" }, "template": { @@ -59741,14 +59822,14 @@ "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "requests": { "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } } } @@ -59906,6 +59987,9 @@ } } }, + "resource.Quantity": { + "type": "string" + }, "v1beta1.DaemonSetStatus": { "description": "DaemonSetStatus represents the current status of a daemon set.", "required": [ @@ -60142,7 +60226,7 @@ "type": "string" }, "protectionDomain": { - "description": "The name of the Protection Domain for the configured storage (defaults to \"default\").", + "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { @@ -60158,11 +60242,11 @@ "type": "boolean" }, "storageMode": { - "description": "Indicates whether the storage for a volume should be thick or thin (defaults to \"thin\").", + "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.", "type": "string" }, "storagePool": { - "description": "The Storage Pool associated with the protection domain (defaults to \"default\").", + "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { @@ -60588,7 +60672,7 @@ }, "currentAverageValue": { "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification.", - "type": "string" + "$ref": "#/definitions/resource.Quantity" }, "name": { "description": "name is the name of the resource in question.", @@ -62129,7 +62213,7 @@ "properties": { "currentAverageValue": { "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)", - "type": "string" + "$ref": "#/definitions/resource.Quantity" }, "metricName": { "description": "metricName is the name of the metric in question", @@ -62180,7 +62264,7 @@ }, "targetValue": { "description": "targetValue is the target value of the metric (as a quantity).", - "type": "string" + "$ref": "#/definitions/resource.Quantity" } } }, @@ -62637,14 +62721,14 @@ "description": "Hard is the set of enforced hard limits for each named resource. More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } }, "used": { "description": "Used is the current observed total usage of the resource in the namespace.", "type": "object", "additionalProperties": { - "type": "string" + "$ref": "#/definitions/resource.Quantity" } } } @@ -64142,7 +64226,7 @@ "properties": { "currentValue": { "description": "currentValue is the current value of the metric (as a quantity).", - "type": "string" + "$ref": "#/definitions/resource.Quantity" }, "metricName": { "description": "metricName is the name of the metric in question.", @@ -64354,7 +64438,7 @@ }, "sizeLimit": { "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir", - "type": "string" + "$ref": "#/definitions/resource.Quantity" } } }, @@ -66169,7 +66253,7 @@ }, "targetAverageValue": { "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.", - "type": "string" + "$ref": "#/definitions/resource.Quantity" } } }, @@ -66185,7 +66269,7 @@ }, "divisor": { "description": "Specifies the output format of the exposed resources, defaults to \"1\"", - "type": "string" + "$ref": "#/definitions/resource.Quantity" }, "resource": { "description": "Required: resource to select", @@ -66285,6 +66369,56 @@ } } }, + "v1.ScaleIOPersistentVolumeSource": { + "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", + "required": [ + "gateway", + "system", + "secretRef" + ], + "properties": { + "fsType": { + "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "gateway": { + "description": "The host address of the ScaleIO API Gateway.", + "type": "string" + }, + "protectionDomain": { + "description": "The name of the ScaleIO Protection Domain for the configured storage.", + "type": "string" + }, + "readOnly": { + "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretRef": { + "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.", + "$ref": "#/definitions/v1.SecretReference" + }, + "sslEnabled": { + "description": "Flag to enable/disable SSL communication with Gateway, default false", + "type": "boolean" + }, + "storageMode": { + "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.", + "type": "string" + }, + "storagePool": { + "description": "The ScaleIO Storage Pool associated with the protection domain.", + "type": "string" + }, + "system": { + "description": "The name of the storage system as configured in ScaleIO.", + "type": "string" + }, + "volumeName": { + "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", + "type": "string" + } + } + }, "v2beta1.CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "required": [ @@ -66558,6 +66692,7 @@ "v1beta2.DeploymentSpec": { "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", "required": [ + "selector", "template" ], "properties": { @@ -66586,7 +66721,7 @@ "format": "int32" }, "selector": { - "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.", + "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.", "$ref": "#/definitions/v1.LabelSelector" }, "strategy": { @@ -67282,7 +67417,7 @@ }, "targetAverageValue": { "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)", - "type": "string" + "$ref": "#/definitions/resource.Quantity" } } },