io.kubernetes.client.openapi.models.V1PodTemplateSpecFluentImpl Maven / Gradle / Ivy
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 V1PodTemplateSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1PodTemplateSpecFluent {
private V1ObjectMetaBuilder metadata;
private V1PodSpecBuilder spec;
public V1PodTemplateSpecFluentImpl() {
}
public V1PodTemplateSpecFluentImpl(V1PodTemplateSpec 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 V1PodTemplateSpecFluent.MetadataNested withNewMetadata() {
return new MetadataNestedImpl();
}
public V1PodTemplateSpecFluent.MetadataNested withNewMetadataLike(V1ObjectMeta item) {
return new MetadataNestedImpl(item);
}
public V1PodTemplateSpecFluent.MetadataNested editMetadata() {
return withNewMetadataLike(getMetadata());
}
public V1PodTemplateSpecFluent.MetadataNested editOrNewMetadata() {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
}
public V1PodTemplateSpecFluent.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 V1PodSpec getSpec() {
return this.spec!=null?this.spec.build():null;
}
public V1PodSpec buildSpec() {
return this.spec!=null?this.spec.build():null;
}
public A withSpec(V1PodSpec spec) {
_visitables.get("spec").remove(this.spec);
if (spec!=null){ this.spec= new V1PodSpecBuilder(spec); _visitables.get("spec").add(this.spec);} return (A) this;
}
public Boolean hasSpec() {
return this.spec != null;
}
public V1PodTemplateSpecFluent.SpecNested withNewSpec() {
return new SpecNestedImpl();
}
public V1PodTemplateSpecFluent.SpecNested withNewSpecLike(V1PodSpec item) {
return new SpecNestedImpl(item);
}
public V1PodTemplateSpecFluent.SpecNested editSpec() {
return withNewSpecLike(getSpec());
}
public V1PodTemplateSpecFluent.SpecNested editOrNewSpec() {
return withNewSpecLike(getSpec() != null ? getSpec(): new V1PodSpecBuilder().build());
}
public V1PodTemplateSpecFluent.SpecNested editOrNewSpecLike(V1PodSpec 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;
V1PodTemplateSpecFluentImpl that = (V1PodTemplateSpecFluentImpl) 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 V1PodTemplateSpecFluent.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) V1PodTemplateSpecFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
public class SpecNestedImpl extends V1PodSpecFluentImpl> implements V1PodTemplateSpecFluent.SpecNested,io.kubernetes.client.fluent.Nested {
private final V1PodSpecBuilder builder;
SpecNestedImpl(V1PodSpec item) {
this.builder = new V1PodSpecBuilder(this, item);
}
SpecNestedImpl() {
this.builder = new V1PodSpecBuilder(this);
}
public N and() {
return (N) V1PodTemplateSpecFluentImpl.this.withSpec(builder.build());
}
public N endSpec() {
return and();
}
}
}