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

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

There is a newer version: 22.0.0
Show newest version
/*
Copyright 2022 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.BaseFluent;
import io.kubernetes.client.fluent.Nested;

/** Generated */
@SuppressWarnings(value = "unchecked")
public class V2beta2HorizontalPodAutoscalerFluentImpl<
        A extends V2beta2HorizontalPodAutoscalerFluent>
    extends BaseFluent implements V2beta2HorizontalPodAutoscalerFluent {
  public V2beta2HorizontalPodAutoscalerFluentImpl() {}

  public V2beta2HorizontalPodAutoscalerFluentImpl(
      io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscaler 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 java.lang.String kind;
  private V1ObjectMetaBuilder metadata;
  private V2beta2HorizontalPodAutoscalerSpecBuilder spec;
  private V2beta2HorizontalPodAutoscalerStatusBuilder status;

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

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

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

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

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

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

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

  public io.kubernetes.client.openapi.models.V1ObjectMeta buildMetadata() {
    return this.metadata != null ? this.metadata.build() : null;
  }

  public A withMetadata(io.kubernetes.client.openapi.models.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 java.lang.Boolean hasMetadata() {
    return this.metadata != null;
  }

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

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.MetadataNested
      withNewMetadataLike(io.kubernetes.client.openapi.models.V1ObjectMeta item) {
    return new V2beta2HorizontalPodAutoscalerFluentImpl.MetadataNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.MetadataNested
      editMetadata() {
    return withNewMetadataLike(getMetadata());
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.MetadataNested
      editOrNewMetadata() {
    return withNewMetadataLike(
        getMetadata() != null
            ? getMetadata()
            : new io.kubernetes.client.openapi.models.V1ObjectMetaBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.MetadataNested
      editOrNewMetadataLike(io.kubernetes.client.openapi.models.V1ObjectMeta item) {
    return withNewMetadataLike(getMetadata() != null ? getMetadata() : item);
  }

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

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpec buildSpec() {
    return this.spec != null ? this.spec.build() : null;
  }

  public A withSpec(io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpec spec) {
    _visitables.get("spec").remove(this.spec);
    if (spec != null) {
      this.spec =
          new io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpecBuilder(spec);
      _visitables.get("spec").add(this.spec);
    }
    return (A) this;
  }

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

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

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.SpecNested
      withNewSpecLike(io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpec item) {
    return new io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluentImpl
        .SpecNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.SpecNested
      editSpec() {
    return withNewSpecLike(getSpec());
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.SpecNested
      editOrNewSpec() {
    return withNewSpecLike(
        getSpec() != null
            ? getSpec()
            : new io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpecBuilder()
                .build());
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.SpecNested
      editOrNewSpecLike(
          io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpec item) {
    return withNewSpecLike(getSpec() != null ? getSpec() : item);
  }

  /**
   * This method has been deprecated, please use method buildStatus instead.
   *
   * @return The buildable object.
   */
  @java.lang.Deprecated
  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatus getStatus() {
    return this.status != null ? this.status.build() : null;
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatus buildStatus() {
    return this.status != null ? this.status.build() : null;
  }

  public A withStatus(
      io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatus status) {
    _visitables.get("status").remove(this.status);
    if (status != null) {
      this.status = new V2beta2HorizontalPodAutoscalerStatusBuilder(status);
      _visitables.get("status").add(this.status);
    }
    return (A) this;
  }

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

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

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.StatusNested
      withNewStatusLike(
          io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatus item) {
    return new io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluentImpl
        .StatusNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.StatusNested
      editStatus() {
    return withNewStatusLike(getStatus());
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.StatusNested
      editOrNewStatus() {
    return withNewStatusLike(
        getStatus() != null
            ? getStatus()
            : new io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatusBuilder()
                .build());
  }

  public io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent.StatusNested
      editOrNewStatusLike(
          io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatus 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;
    V2beta2HorizontalPodAutoscalerFluentImpl that = (V2beta2HorizontalPodAutoscalerFluentImpl) 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 java.lang.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 io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent
                  .MetadataNested<
              N>,
          Nested {
    MetadataNestedImpl(V1ObjectMeta item) {
      this.builder = new V1ObjectMetaBuilder(this, item);
    }

    MetadataNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V1ObjectMetaBuilder(this);
    }

    io.kubernetes.client.openapi.models.V1ObjectMetaBuilder builder;

    public N and() {
      return (N) V2beta2HorizontalPodAutoscalerFluentImpl.this.withMetadata(builder.build());
    }

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

  class SpecNestedImpl
      extends V2beta2HorizontalPodAutoscalerSpecFluentImpl<
          V2beta2HorizontalPodAutoscalerFluent.SpecNested>
      implements io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent
                  .SpecNested<
              N>,
          io.kubernetes.client.fluent.Nested {
    SpecNestedImpl(io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpec item) {
      this.builder = new V2beta2HorizontalPodAutoscalerSpecBuilder(this, item);
    }

    SpecNestedImpl() {
      this.builder =
          new io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpecBuilder(this);
    }

    io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpecBuilder builder;

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

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

  class StatusNestedImpl
      extends V2beta2HorizontalPodAutoscalerStatusFluentImpl<
          V2beta2HorizontalPodAutoscalerFluent.StatusNested>
      implements io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerFluent
                  .StatusNested<
              N>,
          io.kubernetes.client.fluent.Nested {
    StatusNestedImpl(V2beta2HorizontalPodAutoscalerStatus item) {
      this.builder = new V2beta2HorizontalPodAutoscalerStatusBuilder(this, item);
    }

    StatusNestedImpl() {
      this.builder =
          new io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatusBuilder(this);
    }

    io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerStatusBuilder builder;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy