
io.kubernetes.client.models.V1ReplicationControllerSpecFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import java.lang.Integer;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
public class V1ReplicationControllerSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ReplicationControllerSpecFluent{
private Integer minReadySeconds;
private Integer replicas;
private Map selector;
private V1PodTemplateSpecBuilder template;
public V1ReplicationControllerSpecFluentImpl(){
}
public V1ReplicationControllerSpecFluentImpl(V1ReplicationControllerSpec instance){
this.withMinReadySeconds(instance.getMinReadySeconds());
this.withReplicas(instance.getReplicas());
this.withSelector(instance.getSelector());
this.withTemplate(instance.getTemplate());
}
public Integer getMinReadySeconds(){
return this.minReadySeconds;
}
public A withMinReadySeconds(Integer minReadySeconds){
this.minReadySeconds=minReadySeconds; return (A) this;
}
public Boolean hasMinReadySeconds(){
return this.minReadySeconds != null;
}
public A withNewMinReadySeconds(int arg1){
return (A)withMinReadySeconds(new Integer(arg1));
}
public A withNewMinReadySeconds(String arg1){
return (A)withMinReadySeconds(new Integer(arg1));
}
public Integer getReplicas(){
return this.replicas;
}
public A withReplicas(Integer replicas){
this.replicas=replicas; return (A) this;
}
public Boolean hasReplicas(){
return this.replicas != null;
}
public A withNewReplicas(int arg1){
return (A)withReplicas(new Integer(arg1));
}
public A withNewReplicas(String arg1){
return (A)withReplicas(new Integer(arg1));
}
public A addToSelector(String key,String value){
if(this.selector == null && key != null && value != null) { this.selector = new LinkedHashMap(); }
if(key != null && value != null) {this.selector.put(key, value);} return (A)this;
}
public A addToSelector(Map map){
if(this.selector == null && map != null) { this.selector = new LinkedHashMap(); }
if(map != null) { this.selector.putAll(map);} return (A)this;
}
public A removeFromSelector(String key){
if(this.selector == null) { return (A) this; }
if(key != null && this.selector != null) {this.selector.remove(key);} return (A)this;
}
public A removeFromSelector(Map map){
if(this.selector == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.selector != null){this.selector.remove(key);}}} return (A)this;
}
public Map getSelector(){
return this.selector;
}
public A withSelector(Map selector){
if (selector == null) { this.selector = null;} else {this.selector = new LinkedHashMap(selector);} return (A) this;
}
public Boolean hasSelector(){
return this.selector != null;
}
/**
* This method has been deprecated, please use method buildTemplate instead.
*/
@Deprecated public V1PodTemplateSpec getTemplate(){
return this.template!=null?this.template.build():null;
}
public V1PodTemplateSpec buildTemplate(){
return this.template!=null?this.template.build():null;
}
public A withTemplate(V1PodTemplateSpec template){
_visitables.remove(this.template);
if (template!=null){ this.template= new V1PodTemplateSpecBuilder(template); _visitables.add(this.template);} return (A) this;
}
public Boolean hasTemplate(){
return this.template != null;
}
public V1ReplicationControllerSpecFluent.TemplateNested withNewTemplate(){
return new TemplateNestedImpl();
}
public V1ReplicationControllerSpecFluent.TemplateNested withNewTemplateLike(V1PodTemplateSpec item){
return new TemplateNestedImpl(item);
}
public V1ReplicationControllerSpecFluent.TemplateNested editTemplate(){
return withNewTemplateLike(getTemplate());
}
public V1ReplicationControllerSpecFluent.TemplateNested editOrNewTemplate(){
return withNewTemplateLike(getTemplate() != null ? getTemplate(): new V1PodTemplateSpecBuilder().build());
}
public V1ReplicationControllerSpecFluent.TemplateNested editOrNewTemplateLike(V1PodTemplateSpec item){
return withNewTemplateLike(getTemplate() != null ? getTemplate(): item);
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1ReplicationControllerSpecFluentImpl that = (V1ReplicationControllerSpecFluentImpl) o;
if (minReadySeconds != null ? !minReadySeconds.equals(that.minReadySeconds) :that.minReadySeconds != null) return false;
if (replicas != null ? !replicas.equals(that.replicas) :that.replicas != null) return false;
if (selector != null ? !selector.equals(that.selector) :that.selector != null) return false;
if (template != null ? !template.equals(that.template) :that.template != null) return false;
return true;
}
public class TemplateNestedImpl extends V1PodTemplateSpecFluentImpl> implements V1ReplicationControllerSpecFluent.TemplateNested,io.kubernetes.client.fluent.Nested{
private final V1PodTemplateSpecBuilder builder;
TemplateNestedImpl(V1PodTemplateSpec item){
this.builder = new V1PodTemplateSpecBuilder(this, item);
}
TemplateNestedImpl(){
this.builder = new V1PodTemplateSpecBuilder(this);
}
public N and(){
return (N) V1ReplicationControllerSpecFluentImpl.this.withTemplate(builder.build());
}
public N endTemplate(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy