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

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

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

import java.lang.SuppressWarnings;
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;

 /**
  * Generated
  */
  @SuppressWarnings(value = "unchecked")
  public class V1ScaleFluentImpl> extends BaseFluent implements V1ScaleFluent{
  public V1ScaleFluentImpl() {
  }
  public V1ScaleFluentImpl(V1Scale instance) {
    this.withApiVersion(instance.getApiVersion());

    this.withKind(instance.getKind());

    this.withMetadata(instance.getMetadata());

    this.withSpec(instance.getSpec());

    this.withStatus(instance.getStatus());

  }
  private String apiVersion;
  private String kind;
  private V1ObjectMetaBuilder metadata;
  private V1ScaleSpecBuilder spec;
  private V1ScaleStatusBuilder status;
  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.
   * @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);} else { this.metadata = null; _visitables.get("metadata").remove(this.metadata); } return (A) this;
  }
  public Boolean hasMetadata() {
    return this.metadata != null;
  }
  public V1ScaleFluent.MetadataNested withNewMetadata() {
    return new V1ScaleFluentImpl.MetadataNestedImpl();
  }
  public V1ScaleFluent.MetadataNested withNewMetadataLike(V1ObjectMeta item) {
    return new V1ScaleFluentImpl.MetadataNestedImpl(item);
  }
  public V1ScaleFluent.MetadataNested editMetadata() {
    return withNewMetadataLike(getMetadata());
  }
  public V1ScaleFluent.MetadataNested editOrNewMetadata() {
    return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
  }
  public V1ScaleFluent.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 V1ScaleSpec getSpec() {
    return this.spec!=null ?this.spec.build():null;
  }
  public V1ScaleSpec buildSpec() {
    return this.spec!=null ?this.spec.build():null;
  }
  public A withSpec(V1ScaleSpec spec) {
    _visitables.get("spec").remove(this.spec);
    if (spec!=null){ this.spec= new V1ScaleSpecBuilder(spec); _visitables.get("spec").add(this.spec);} else { this.spec = null; _visitables.get("spec").remove(this.spec); } return (A) this;
  }
  public Boolean hasSpec() {
    return this.spec != null;
  }
  public V1ScaleFluent.SpecNested withNewSpec() {
    return new V1ScaleFluentImpl.SpecNestedImpl();
  }
  public V1ScaleFluent.SpecNested withNewSpecLike(V1ScaleSpec item) {
    return new V1ScaleFluentImpl.SpecNestedImpl(item);
  }
  public V1ScaleFluent.SpecNested editSpec() {
    return withNewSpecLike(getSpec());
  }
  public V1ScaleFluent.SpecNested editOrNewSpec() {
    return withNewSpecLike(getSpec() != null ? getSpec(): new V1ScaleSpecBuilder().build());
  }
  public V1ScaleFluent.SpecNested editOrNewSpecLike(V1ScaleSpec item) {
    return withNewSpecLike(getSpec() != null ? getSpec(): item);
  }
  
  /**
   * This method has been deprecated, please use method buildStatus instead.
   * @return The buildable object.
   */
  @Deprecated
  public V1ScaleStatus getStatus() {
    return this.status!=null ?this.status.build():null;
  }
  public V1ScaleStatus buildStatus() {
    return this.status!=null ?this.status.build():null;
  }
  public A withStatus(V1ScaleStatus status) {
    _visitables.get("status").remove(this.status);
    if (status!=null){ this.status= new V1ScaleStatusBuilder(status); _visitables.get("status").add(this.status);} else { this.status = null; _visitables.get("status").remove(this.status); } return (A) this;
  }
  public Boolean hasStatus() {
    return this.status != null;
  }
  public V1ScaleFluent.StatusNested withNewStatus() {
    return new V1ScaleFluentImpl.StatusNestedImpl();
  }
  public V1ScaleFluent.StatusNested withNewStatusLike(V1ScaleStatus item) {
    return new V1ScaleFluentImpl.StatusNestedImpl(item);
  }
  public V1ScaleFluent.StatusNested editStatus() {
    return withNewStatusLike(getStatus());
  }
  public V1ScaleFluent.StatusNested editOrNewStatus() {
    return withNewStatusLike(getStatus() != null ? getStatus(): new V1ScaleStatusBuilder().build());
  }
  public V1ScaleFluent.StatusNested editOrNewStatusLike(V1ScaleStatus 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;
    V1ScaleFluentImpl that = (V1ScaleFluentImpl) 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 String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (apiVersion != null) { sb.append("apiVersion:"); sb.append(apiVersion + ","); }
    if (kind != null) { sb.append("kind:"); sb.append(kind + ","); }
    if (metadata != null) { sb.append("metadata:"); sb.append(metadata + ","); }
    if (spec != null) { sb.append("spec:"); sb.append(spec + ","); }
    if (status != null) { sb.append("status:"); sb.append(status); }
    sb.append("}");
    return sb.toString();
  }
  class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements V1ScaleFluent.MetadataNested,Nested{
    MetadataNestedImpl(V1ObjectMeta item) {
      this.builder = new V1ObjectMetaBuilder(this, item);
    }
    MetadataNestedImpl() {
      this.builder = new V1ObjectMetaBuilder(this);
    }
    V1ObjectMetaBuilder builder;
    public N and() {
      return (N) V1ScaleFluentImpl.this.withMetadata(builder.build());
    }
    public N endMetadata() {
      return and();
    }
    
  }
  class SpecNestedImpl extends V1ScaleSpecFluentImpl> implements V1ScaleFluent.SpecNested,Nested{
    SpecNestedImpl(V1ScaleSpec item) {
      this.builder = new V1ScaleSpecBuilder(this, item);
    }
    SpecNestedImpl() {
      this.builder = new V1ScaleSpecBuilder(this);
    }
    V1ScaleSpecBuilder builder;
    public N and() {
      return (N) V1ScaleFluentImpl.this.withSpec(builder.build());
    }
    public N endSpec() {
      return and();
    }
    
  }
  class StatusNestedImpl extends V1ScaleStatusFluentImpl> implements V1ScaleFluent.StatusNested,Nested{
    StatusNestedImpl(V1ScaleStatus item) {
      this.builder = new V1ScaleStatusBuilder(this, item);
    }
    StatusNestedImpl() {
      this.builder = new V1ScaleStatusBuilder(this);
    }
    V1ScaleStatusBuilder builder;
    public N and() {
      return (N) V1ScaleFluentImpl.this.withStatus(builder.build());
    }
    public N endStatus() {
      return and();
    }
    
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy