io.alauda.kubernetes.api.model.extensions.DeploymentSpecFluent Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model.extensions;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.Nested;
import java.lang.String;
import io.alauda.kubernetes.api.model.PodTemplateSpec;
import java.lang.Deprecated;
import java.lang.Boolean;
import io.alauda.kubernetes.api.model.LabelSelectorBuilder;
import io.alauda.kubernetes.api.builder.Fluent;
import io.alauda.kubernetes.api.model.LabelSelector;
import java.lang.Integer;
import javax.validation.Valid;
import io.alauda.kubernetes.api.model.PodTemplateSpecBuilder;
import java.lang.Long;
import io.alauda.kubernetes.api.model.PodTemplateSpecFluent;
import java.lang.Object;
import io.alauda.kubernetes.api.model.LabelSelectorFluent;
import java.util.Map;
public interface DeploymentSpecFluent> extends Fluent{
public Integer getMinReadySeconds();
public A withMinReadySeconds(Integer minReadySeconds);
public Boolean hasMinReadySeconds();
public Boolean isPaused();
public A withPaused(Boolean paused);
public Boolean hasPaused();
public Integer getProgressDeadlineSeconds();
public A withProgressDeadlineSeconds(Integer progressDeadlineSeconds);
public Boolean hasProgressDeadlineSeconds();
public Integer getReplicas();
public A withReplicas(Integer replicas);
public Boolean hasReplicas();
public Integer getRevisionHistoryLimit();
public A withRevisionHistoryLimit(Integer revisionHistoryLimit);
public Boolean hasRevisionHistoryLimit();
/**
* This method has been deprecated, please use method buildRollbackTo instead.
*/
@Deprecated public RollbackConfig getRollbackTo();
public RollbackConfig buildRollbackTo();
public A withRollbackTo(RollbackConfig rollbackTo);
public Boolean hasRollbackTo();
public DeploymentSpecFluent.RollbackToNested withNewRollbackTo();
public DeploymentSpecFluent.RollbackToNested withNewRollbackToLike(RollbackConfig item);
public DeploymentSpecFluent.RollbackToNested editRollbackTo();
public DeploymentSpecFluent.RollbackToNested editOrNewRollbackTo();
public DeploymentSpecFluent.RollbackToNested editOrNewRollbackToLike(RollbackConfig item);
public A withNewRollbackTo(Long revision);
/**
* This method has been deprecated, please use method buildSelector instead.
*/
@Deprecated public LabelSelector getSelector();
public LabelSelector buildSelector();
public A withSelector(LabelSelector selector);
public Boolean hasSelector();
public DeploymentSpecFluent.SelectorNested withNewSelector();
public DeploymentSpecFluent.SelectorNested withNewSelectorLike(LabelSelector item);
public DeploymentSpecFluent.SelectorNested editSelector();
public DeploymentSpecFluent.SelectorNested editOrNewSelector();
public DeploymentSpecFluent.SelectorNested editOrNewSelectorLike(LabelSelector item);
/**
* This method has been deprecated, please use method buildStrategy instead.
*/
@Deprecated public DeploymentStrategy getStrategy();
public DeploymentStrategy buildStrategy();
public A withStrategy(DeploymentStrategy strategy);
public Boolean hasStrategy();
public DeploymentSpecFluent.StrategyNested withNewStrategy();
public DeploymentSpecFluent.StrategyNested withNewStrategyLike(DeploymentStrategy item);
public DeploymentSpecFluent.StrategyNested editStrategy();
public DeploymentSpecFluent.StrategyNested editOrNewStrategy();
public DeploymentSpecFluent.StrategyNested editOrNewStrategyLike(DeploymentStrategy item);
/**
* This method has been deprecated, please use method buildTemplate instead.
*/
@Deprecated public PodTemplateSpec getTemplate();
public PodTemplateSpec buildTemplate();
public A withTemplate(PodTemplateSpec template);
public Boolean hasTemplate();
public DeploymentSpecFluent.TemplateNested withNewTemplate();
public DeploymentSpecFluent.TemplateNested withNewTemplateLike(PodTemplateSpec item);
public DeploymentSpecFluent.TemplateNested editTemplate();
public DeploymentSpecFluent.TemplateNested editOrNewTemplate();
public DeploymentSpecFluent.TemplateNested editOrNewTemplateLike(PodTemplateSpec item);
public interface RollbackToNested extends io.alauda.kubernetes.api.builder.Nested,RollbackConfigFluent>{
public N and(); public N endRollbackTo();
}
public interface SelectorNested extends io.alauda.kubernetes.api.builder.Nested,LabelSelectorFluent>{
public N and(); public N endSelector();
}
public interface StrategyNested extends io.alauda.kubernetes.api.builder.Nested,DeploymentStrategyFluent>{
public N and(); public N endStrategy();
}
public interface TemplateNested extends io.alauda.kubernetes.api.builder.Nested,PodTemplateSpecFluent>{
public N and(); public N endTemplate();
}
}