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

io.kubernetes.client.models.V1beta2StatefulSetFluentImpl 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.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Boolean;
import java.lang.Object;

public class V1beta2StatefulSetFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta2StatefulSetFluent{

    private String apiVersion;
    private String kind;
    private V1ObjectMetaBuilder metadata;
    private V1beta2StatefulSetSpecBuilder spec;
    private V1beta2StatefulSetStatusBuilder status;

    public V1beta2StatefulSetFluentImpl(){
    }
    public V1beta2StatefulSetFluentImpl(V1beta2StatefulSet instance){
            this.withApiVersion(instance.getApiVersion());

            this.withKind(instance.getKind());

            this.withMetadata(instance.getMetadata());

            this.withSpec(instance.getSpec());

            this.withStatus(instance.getStatus());

    }

    public String getApiVersion(){
            return this.apiVersion;
    }

    public A withApiVersion(String apiVersion){
            this.apiVersion=apiVersion; return (A) this;
    }

    public Boolean hasApiVersion(){
            return this.apiVersion != null;
    }

    public String getKind(){
            return this.kind;
    }

    public A withKind(String kind){
            this.kind=kind; return (A) this;
    }

    public Boolean hasKind(){
            return this.kind != null;
    }

    
/**
 * This method has been deprecated, please use method buildMetadata instead.
 */
@Deprecated public V1ObjectMeta getMetadata(){
            return this.metadata!=null?this.metadata.build():null;
    }

    public V1ObjectMeta buildMetadata(){
            return this.metadata!=null?this.metadata.build():null;
    }

    public A withMetadata(V1ObjectMeta metadata){
            _visitables.remove(this.metadata);
            if (metadata!=null){ this.metadata= new V1ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (A) this;
    }

    public Boolean hasMetadata(){
            return this.metadata != null;
    }

    public V1beta2StatefulSetFluent.MetadataNested withNewMetadata(){
            return new MetadataNestedImpl();
    }

    public V1beta2StatefulSetFluent.MetadataNested withNewMetadataLike(V1ObjectMeta item){
            return new MetadataNestedImpl(item);
    }

    public V1beta2StatefulSetFluent.MetadataNested editMetadata(){
            return withNewMetadataLike(getMetadata());
    }

    public V1beta2StatefulSetFluent.MetadataNested editOrNewMetadata(){
            return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
    }

    public V1beta2StatefulSetFluent.MetadataNested editOrNewMetadataLike(V1ObjectMeta item){
            return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
    }

    
/**
 * This method has been deprecated, please use method buildSpec instead.
 */
@Deprecated public V1beta2StatefulSetSpec getSpec(){
            return this.spec!=null?this.spec.build():null;
    }

    public V1beta2StatefulSetSpec buildSpec(){
            return this.spec!=null?this.spec.build():null;
    }

    public A withSpec(V1beta2StatefulSetSpec spec){
            _visitables.remove(this.spec);
            if (spec!=null){ this.spec= new V1beta2StatefulSetSpecBuilder(spec); _visitables.add(this.spec);} return (A) this;
    }

    public Boolean hasSpec(){
            return this.spec != null;
    }

    public V1beta2StatefulSetFluent.SpecNested withNewSpec(){
            return new SpecNestedImpl();
    }

    public V1beta2StatefulSetFluent.SpecNested withNewSpecLike(V1beta2StatefulSetSpec item){
            return new SpecNestedImpl(item);
    }

    public V1beta2StatefulSetFluent.SpecNested editSpec(){
            return withNewSpecLike(getSpec());
    }

    public V1beta2StatefulSetFluent.SpecNested editOrNewSpec(){
            return withNewSpecLike(getSpec() != null ? getSpec(): new V1beta2StatefulSetSpecBuilder().build());
    }

    public V1beta2StatefulSetFluent.SpecNested editOrNewSpecLike(V1beta2StatefulSetSpec item){
            return withNewSpecLike(getSpec() != null ? getSpec(): item);
    }

    
/**
 * This method has been deprecated, please use method buildStatus instead.
 */
@Deprecated public V1beta2StatefulSetStatus getStatus(){
            return this.status!=null?this.status.build():null;
    }

    public V1beta2StatefulSetStatus buildStatus(){
            return this.status!=null?this.status.build():null;
    }

    public A withStatus(V1beta2StatefulSetStatus status){
            _visitables.remove(this.status);
            if (status!=null){ this.status= new V1beta2StatefulSetStatusBuilder(status); _visitables.add(this.status);} return (A) this;
    }

    public Boolean hasStatus(){
            return this.status != null;
    }

    public V1beta2StatefulSetFluent.StatusNested withNewStatus(){
            return new StatusNestedImpl();
    }

    public V1beta2StatefulSetFluent.StatusNested withNewStatusLike(V1beta2StatefulSetStatus item){
            return new StatusNestedImpl(item);
    }

    public V1beta2StatefulSetFluent.StatusNested editStatus(){
            return withNewStatusLike(getStatus());
    }

    public V1beta2StatefulSetFluent.StatusNested editOrNewStatus(){
            return withNewStatusLike(getStatus() != null ? getStatus(): new V1beta2StatefulSetStatusBuilder().build());
    }

    public V1beta2StatefulSetFluent.StatusNested editOrNewStatusLike(V1beta2StatefulSetStatus item){
            return withNewStatusLike(getStatus() != null ? getStatus(): 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;
            V1beta2StatefulSetFluentImpl that = (V1beta2StatefulSetFluentImpl) o;
            if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
            if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
            if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
            if (spec != null ? !spec.equals(that.spec) :that.spec != null) return false;
            if (status != null ? !status.equals(that.status) :that.status != null) return false;
            return true;
    }


    public class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements V1beta2StatefulSetFluent.MetadataNested,io.kubernetes.client.fluent.Nested{

            private final V1ObjectMetaBuilder builder;
    
            MetadataNestedImpl(V1ObjectMeta item){
                    this.builder = new V1ObjectMetaBuilder(this, item);
            }
            MetadataNestedImpl(){
                    this.builder = new V1ObjectMetaBuilder(this);
            }
    
    public N and(){
            return (N) V1beta2StatefulSetFluentImpl.this.withMetadata(builder.build());
    }
    public N endMetadata(){
            return and();
    }

}
    public class SpecNestedImpl extends V1beta2StatefulSetSpecFluentImpl> implements V1beta2StatefulSetFluent.SpecNested,io.kubernetes.client.fluent.Nested{

            private final V1beta2StatefulSetSpecBuilder builder;
    
            SpecNestedImpl(V1beta2StatefulSetSpec item){
                    this.builder = new V1beta2StatefulSetSpecBuilder(this, item);
            }
            SpecNestedImpl(){
                    this.builder = new V1beta2StatefulSetSpecBuilder(this);
            }
    
    public N and(){
            return (N) V1beta2StatefulSetFluentImpl.this.withSpec(builder.build());
    }
    public N endSpec(){
            return and();
    }

}
    public class StatusNestedImpl extends V1beta2StatefulSetStatusFluentImpl> implements V1beta2StatefulSetFluent.StatusNested,io.kubernetes.client.fluent.Nested{

            private final V1beta2StatefulSetStatusBuilder builder;
    
            StatusNestedImpl(V1beta2StatefulSetStatus item){
                    this.builder = new V1beta2StatefulSetStatusBuilder(this, item);
            }
            StatusNestedImpl(){
                    this.builder = new V1beta2StatefulSetStatusBuilder(this);
            }
    
    public N and(){
            return (N) V1beta2StatefulSetFluentImpl.this.withStatus(builder.build());
    }
    public N endStatus(){
            return and();
    }

}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy