annotations.io.alauda.kubernetes.api.model.LifecycleFluent Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.Fluent;
import io.alauda.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.Deprecated;
import javax.validation.Valid;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
public interface LifecycleFluent> extends Fluent{
/**
* This method has been deprecated, please use method buildPostStart instead.
*/
@Deprecated public Handler getPostStart();
public Handler buildPostStart();
public A withPostStart(Handler postStart);
public Boolean hasPostStart();
public LifecycleFluent.PostStartNested withNewPostStart();
public LifecycleFluent.PostStartNested withNewPostStartLike(Handler item);
public LifecycleFluent.PostStartNested editPostStart();
public LifecycleFluent.PostStartNested editOrNewPostStart();
public LifecycleFluent.PostStartNested editOrNewPostStartLike(Handler item);
/**
* This method has been deprecated, please use method buildPreStop instead.
*/
@Deprecated public Handler getPreStop();
public Handler buildPreStop();
public A withPreStop(Handler preStop);
public Boolean hasPreStop();
public LifecycleFluent.PreStopNested withNewPreStop();
public LifecycleFluent.PreStopNested withNewPreStopLike(Handler item);
public LifecycleFluent.PreStopNested editPreStop();
public LifecycleFluent.PreStopNested editOrNewPreStop();
public LifecycleFluent.PreStopNested editOrNewPreStopLike(Handler item);
public interface PostStartNested extends io.alauda.kubernetes.api.builder.Nested,HandlerFluent>{
public N and(); public N endPostStart();
}
public interface PreStopNested extends io.alauda.kubernetes.api.builder.Nested,HandlerFluent>{
public N and(); public N endPreStop();
}
}