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

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

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

import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;

public class V2alpha1JobTemplateSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V2alpha1JobTemplateSpecFluent {

    private V1ObjectMetaBuilder metadata;
    private V1JobSpecBuilder spec;

    public V2alpha1JobTemplateSpecFluentImpl() { 
    }


    public V2alpha1JobTemplateSpecFluentImpl(V2alpha1JobTemplateSpec instance) { 
        this.withMetadata(instance.getMetadata());

        this.withSpec(instance.getSpec());

    }


    
/**
 * 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 V2alpha1JobTemplateSpecFluent.MetadataNested withNewMetadata() {
        return new MetadataNestedImpl();
    }

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

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

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

    public V2alpha1JobTemplateSpecFluent.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 V1JobSpec getSpec() {
        return this.spec!=null?this.spec.build():null;
    }

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

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

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

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

    public V2alpha1JobTemplateSpecFluent.SpecNested withNewSpecLike(V1JobSpec item) {
        return new SpecNestedImpl(item);
    }

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

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

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

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        V2alpha1JobTemplateSpecFluentImpl that = (V2alpha1JobTemplateSpecFluentImpl) o;
        if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
        if (spec != null ? !spec.equals(that.spec) :that.spec != null) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(metadata,  spec,  super.hashCode());
    }

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

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


    public class SpecNestedImpl extends V1JobSpecFluentImpl> implements V2alpha1JobTemplateSpecFluent.SpecNested,io.kubernetes.client.fluent.Nested {
        private final V1JobSpecBuilder builder;

        SpecNestedImpl(V1JobSpec item) {
            this.builder = new V1JobSpecBuilder(this, item);
        }

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

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

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy