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

io.kubernetes.client.openapi.models.V1DeploymentFluentImpl Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import java.lang.StringBuilder;
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.StringBuffer;
import java.lang.Object;

public class V1DeploymentFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1DeploymentFluent {

    private String apiVersion;
    private String kind;
    private V1ObjectMetaBuilder metadata;
    private V1DeploymentSpecBuilder spec;
    private V1DeploymentStatusBuilder status;

    public V1DeploymentFluentImpl() { 
    }


    public V1DeploymentFluentImpl(V1Deployment 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 A withNewApiVersion(String arg1) {
        return (A)withApiVersion(new String(arg1));
    }

    public A withNewApiVersion(StringBuilder arg1) {
        return (A)withApiVersion(new String(arg1));
    }

    public A withNewApiVersion(StringBuffer arg1) {
        return (A)withApiVersion(new String(arg1));
    }

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

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

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

    public A withNewKind(String arg1) {
        return (A)withKind(new String(arg1));
    }

    public A withNewKind(StringBuilder arg1) {
        return (A)withKind(new String(arg1));
    }

    public A withNewKind(StringBuffer arg1) {
        return (A)withKind(new String(arg1));
    }

    
/**
 * This method has been deprecated, please use method buildMetadata instead.
 * @return The buildable object.
 */
@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.get("metadata").remove(this.metadata);
        if (metadata!=null){ this.metadata= new V1ObjectMetaBuilder(metadata); _visitables.get("metadata").add(this.metadata);} return (A) this;
    }

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

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

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

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

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

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

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

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

    public A withSpec(V1DeploymentSpec spec) {
        _visitables.get("spec").remove(this.spec);
        if (spec!=null){ this.spec= new V1DeploymentSpecBuilder(spec); _visitables.get("spec").add(this.spec);} return (A) this;
    }

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

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

    public V1DeploymentFluent.SpecNested withNewSpecLike(V1DeploymentSpec item) {
        return new SpecNestedImpl(item);
    }

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

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

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

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

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

    public A withStatus(V1DeploymentStatus status) {
        _visitables.get("status").remove(this.status);
        if (status!=null){ this.status= new V1DeploymentStatusBuilder(status); _visitables.get("status").add(this.status);} return (A) this;
    }

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

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

    public V1DeploymentFluent.StatusNested withNewStatusLike(V1DeploymentStatus item) {
        return new StatusNestedImpl(item);
    }

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

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

    public V1DeploymentFluent.StatusNested editOrNewStatusLike(V1DeploymentStatus 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;
        V1DeploymentFluentImpl that = (V1DeploymentFluentImpl) 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 int hashCode() {
        return java.util.Objects.hash(apiVersion,  kind,  metadata,  spec,  status,  super.hashCode());
    }

    public class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements V1DeploymentFluent.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) V1DeploymentFluentImpl.this.withMetadata(builder.build());
        }

        public N endMetadata() {
             return and();
        }
    }


    public class SpecNestedImpl extends V1DeploymentSpecFluentImpl> implements V1DeploymentFluent.SpecNested,io.kubernetes.client.fluent.Nested {
        private final V1DeploymentSpecBuilder builder;

        SpecNestedImpl(V1DeploymentSpec item) {
            this.builder = new V1DeploymentSpecBuilder(this, item);
        }

        SpecNestedImpl() {
            this.builder = new V1DeploymentSpecBuilder(this);
        }

        public N and() {
             return (N) V1DeploymentFluentImpl.this.withSpec(builder.build());
        }

        public N endSpec() {
             return and();
        }
    }


    public class StatusNestedImpl extends V1DeploymentStatusFluentImpl> implements V1DeploymentFluent.StatusNested,io.kubernetes.client.fluent.Nested {
        private final V1DeploymentStatusBuilder builder;

        StatusNestedImpl(V1DeploymentStatus item) {
            this.builder = new V1DeploymentStatusBuilder(this, item);
        }

        StatusNestedImpl() {
            this.builder = new V1DeploymentStatusBuilder(this);
        }

        public N and() {
             return (N) V1DeploymentFluentImpl.this.withStatus(builder.build());
        }

        public N endStatus() {
             return and();
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy