All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dekorate.kubernetes.config.EditableProbe Maven / Gradle / Ivy

There is a newer version: 4.1.4
Show newest version
package io.dekorate.kubernetes.config;

import java.lang.Integer;
import io.fabric8.kubernetes.api.builder.Editable;
import java.lang.String;

public class EditableProbe extends io.dekorate.kubernetes.config.Probe implements Editable {


    public EditableProbe() {
        super();
    }

    public EditableProbe(String httpActionPath,String execAction,String tcpSocketAction,Integer initialDelaySeconds,Integer periodSeconds,Integer timeoutSeconds,Integer successThreshold,Integer failureThreshold) {
        super(httpActionPath, execAction, tcpSocketAction, initialDelaySeconds, periodSeconds, timeoutSeconds, successThreshold, failureThreshold);
    }

    public ProbeBuilder edit() {
        return new ProbeBuilder(this);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy