use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1Api method patchNamespacedIngressStatusWithHttpInfo.
/**
* partially update status of the specified Ingress
* @param name name of the Ingress (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)
* @return ApiResponse<V1beta1Ingress>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<V1beta1Ingress> patchNamespacedIngressStatusWithHttpInfo(String name, String namespace, Object body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = patchNamespacedIngressStatusValidateBeforeCall(name, namespace, body, pretty, null, null);
Type localVarReturnType = new TypeToken<V1beta1Ingress>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1Api method patchNamespacedIngressStatusAsync.
/**
* (asynchronously)
* partially update status of the specified Ingress
* @param name name of the Ingress (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 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 patchNamespacedIngressStatusAsync(String name, String namespace, Object body, String pretty, final ApiCallback<V1beta1Ingress> 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 = patchNamespacedIngressStatusValidateBeforeCall(name, namespace, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1beta1Ingress>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method readNamespacedIngressStatusTest.
/**
* read status of the specified Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void readNamespacedIngressStatusTest() throws ApiException {
String name = null;
String namespace = null;
String pretty = null;
V1beta1Ingress response = api.readNamespacedIngressStatus(name, namespace, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method replaceNamespacedIngressStatusTest.
/**
* replace status of the specified Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceNamespacedIngressStatusTest() throws ApiException {
String name = null;
String namespace = null;
V1beta1Ingress body = null;
String pretty = null;
V1beta1Ingress response = api.replaceNamespacedIngressStatus(name, namespace, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1Ingress in project weblogic-kubernetes-operator by oracle.
the class Main method dispatchIngressWatch.
private static void dispatchIngressWatch(Watch.Response<V1beta1Ingress> item) {
V1beta1Ingress i = item.object;
if (i != null) {
V1ObjectMeta metadata = i.getMetadata();
String domainUID = metadata.getLabels().get(LabelConstants.DOMAINUID_LABEL);
String clusterName = metadata.getLabels().get(LabelConstants.CLUSTERNAME_LABEL);
if (domainUID != null) {
DomainPresenceInfo info = domains.get(domainUID);
if (info != null && clusterName != null) {
switch(item.type) {
case "ADDED":
info.getIngresses().put(clusterName, i);
break;
case "MODIFIED":
V1beta1Ingress skoIngress = info.getIngresses().get(clusterName);
if (skoIngress != null) {
info.getIngresses().replace(clusterName, skoIngress, i);
}
break;
case "DELETED":
V1beta1Ingress oldIngress = info.getIngresses().remove(clusterName);
if (oldIngress != null) {
// Ingress was deleted, but sko still contained a non-null entry
LOGGER.info(MessageKeys.INGRESS_DELETED, domainUID, metadata.getNamespace(), clusterName);
doCheckAndCreateDomainPresence(info.getDomain(), true);
}
break;
case "ERROR":
default:
}
}
}
}
}
Aggregations