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

io.fabric8.kubernetes.api.model.extensions.DeploymentStrategyFluentImpl Maven / Gradle / Ivy

There is a newer version: 6.13.4
Show newest version
package io.fabric8.kubernetes.api.model.extensions;

import java.util.HashMap;
import java.io.Serializable;
import java.util.Map;
import java.util.Map;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;

public class DeploymentStrategyFluentImpl> extends BaseFluent implements DeploymentStrategyFluent{

     VisitableBuilder rollingUpdate;     String type;     Map additionalProperties = new HashMap();
public DeploymentStrategyFluentImpl(){
    
}
public DeploymentStrategyFluentImpl( DeploymentStrategy instance ){
    this.withRollingUpdate(instance.getRollingUpdate()); this.withType(instance.getType()); 
}

    public RollingUpdateDeployment getRollingUpdate(){
    return this.rollingUpdate!=null?this.rollingUpdate.build():null;
    }
    public T withRollingUpdate( RollingUpdateDeployment rollingUpdate){
    if (rollingUpdate!=null){ this.rollingUpdate= new RollingUpdateDeploymentBuilder(rollingUpdate); _visitables.add(this.rollingUpdate);} return (T) this;
    }
    public RollingUpdateNested withNewRollingUpdate(){
    return new RollingUpdateNestedImpl();
    }
    public RollingUpdateNested withNewRollingUpdateLike( RollingUpdateDeployment item){
    return new RollingUpdateNestedImpl(item);
    }
    public RollingUpdateNested editRollingUpdate(){
    return withNewRollingUpdateLike(getRollingUpdate());
    }
    public String getType(){
    return this.type;
    }
    public T withType( String type){
    this.type=type; return (T) this;
    }
    public T addToAdditionalProperties( String key,  Object value){
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
    }
    public T addToAdditionalProperties( Map map){
    if(map != null) { this.additionalProperties.putAll(map);} return (T)this;
    }
    public T removeFromAdditionalProperties( String key){
    if(key != null) {this.additionalProperties.remove(key);} return (T)this;
    }
    public T removeFromAdditionalProperties( Map map){
    if(map != null) { for(Object key : map.keySet()) {this.additionalProperties.remove(key);}} return (T)this;
    }
    public Map getAdditionalProperties(){
    return this.additionalProperties;
    }
    public T withAdditionalProperties( Map additionalProperties){
    this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
    }
    public boolean equals( Object o){
    
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DeploymentStrategyFluentImpl that = (DeploymentStrategyFluentImpl) o;
if (rollingUpdate != null ? !rollingUpdate.equals(that.rollingUpdate) :that.rollingUpdate != null) return false;
if (type != null ? !type.equals(that.type) :that.type != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;

    }

    public class RollingUpdateNestedImpl extends RollingUpdateDeploymentFluentImpl> implements RollingUpdateNested{

        private final RollingUpdateDeploymentBuilder builder;
    
             RollingUpdateNestedImpl (){
        this.builder = new RollingUpdateDeploymentBuilder(this);
        }
             RollingUpdateNestedImpl ( RollingUpdateDeployment item){
        this.builder = new RollingUpdateDeploymentBuilder(this, item);
        }
    
            public N endRollingUpdate(){
            return and();
        }
            public N and(){
            return (N) DeploymentStrategyFluentImpl.this.withRollingUpdate(builder.build());
        }
    
}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy