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