io.dekorate.prometheus.client.handlers.ServiceMonitorHandler Maven / Gradle / Ivy
/**
* Copyright 2018 The original authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.dekorate.prometheus.client.handlers;
import java.util.function.Predicate;
import io.dekorate.deps.kubernetes.client.Config;
import io.dekorate.deps.kubernetes.client.ResourceHandler;
import io.dekorate.deps.kubernetes.client.Watch;
import io.dekorate.deps.kubernetes.client.Watcher;
import io.dekorate.prometheus.client.dsl.internal.ServiceMonitorOperationsImpl;
import io.dekorate.deps.kubernetes.client.dsl.base.OperationContext;
import io.dekorate.deps.okhttp3.OkHttpClient;
import io.dekorate.prometheus.model.ServiceMonitor;
import io.dekorate.prometheus.model.ServiceMonitorBuilder;
import java.util.TreeMap;
import java.util.concurrent.TimeUnit;
public class ServiceMonitorHandler implements ResourceHandler {
@Override
public String getKind() {
return ServiceMonitor.class.getSimpleName();
}
@Override
public String getApiVersion() {
return "monitoring.coreos.com/v1";
}
@Override
public ServiceMonitor create(OkHttpClient client, Config config, String namespace, ServiceMonitor item) {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).create();
}
@Override
public ServiceMonitor replace(OkHttpClient client, Config config, String namespace, ServiceMonitor item) {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).withName(item.getMetadata().getName()).replace(item);
}
@Override
public ServiceMonitor reload(OkHttpClient client, Config config, String namespace, ServiceMonitor item) {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).withName(item.getMetadata().getName()).fromServer().get();
}
@Override
public ServiceMonitorBuilder edit(ServiceMonitor item) {
return new ServiceMonitorBuilder(item);
}
@Override
public Boolean delete(OkHttpClient client, Config config, String namespace, Boolean cascading, ServiceMonitor item) {
if (cascading) {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).cascading(cascading).delete();
} else {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).delete(item);
}
}
@Override
public Watch watch(OkHttpClient client, Config config, String namespace, ServiceMonitor item, Watcher watcher) {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).withName(item.getMetadata().getName()).watch(watcher);
}
@Override
public Watch watch(OkHttpClient client, Config config, String namespace, ServiceMonitor item, String resourceVersion, Watcher watcher) {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).withName(item.getMetadata().getName()).watch(resourceVersion, watcher);
}
@Override
public ServiceMonitor waitUntilReady(OkHttpClient client, Config config, String namespace, ServiceMonitor item, long amount, TimeUnit timeUnit) throws InterruptedException {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).withName(item.getMetadata().getName()).waitUntilReady(amount, timeUnit);
}
@Override
public ServiceMonitor waitUntilCondition(OkHttpClient client, Config config, String namespace, ServiceMonitor item, Predicate condition, long amount, TimeUnit timeUnit) throws InterruptedException {
return new ServiceMonitorOperationsImpl(client, config).withItem(item).inNamespace(namespace).withName(item.getMetadata().getName()).waitUntilCondition(condition, amount, timeUnit);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy