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

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

/*
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 V2MetricStatusFluentImpl> extends BaseFluent
    implements V2MetricStatusFluent {
  public V2MetricStatusFluentImpl() {}

  public V2MetricStatusFluentImpl(io.kubernetes.client.openapi.models.V2MetricStatus instance) {
    this.withContainerResource(instance.getContainerResource());

    this.withExternal(instance.getExternal());

    this.withObject(instance.getObject());

    this.withPods(instance.getPods());

    this.withResource(instance.getResource());

    this.withType(instance.getType());
  }

  private V2ContainerResourceMetricStatusBuilder containerResource;
  private V2ExternalMetricStatusBuilder external;
  private V2ObjectMetricStatusBuilder _object;
  private V2PodsMetricStatusBuilder pods;
  private V2ResourceMetricStatusBuilder resource;
  private String type;

  /**
   * This method has been deprecated, please use method buildContainerResource instead.
   *
   * @return The buildable object.
   */
  @Deprecated
  public V2ContainerResourceMetricStatus getContainerResource() {
    return this.containerResource != null ? this.containerResource.build() : null;
  }

  public io.kubernetes.client.openapi.models.V2ContainerResourceMetricStatus
      buildContainerResource() {
    return this.containerResource != null ? this.containerResource.build() : null;
  }

  public A withContainerResource(
      io.kubernetes.client.openapi.models.V2ContainerResourceMetricStatus containerResource) {
    _visitables.get("containerResource").remove(this.containerResource);
    if (containerResource != null) {
      this.containerResource =
          new io.kubernetes.client.openapi.models.V2ContainerResourceMetricStatusBuilder(
              containerResource);
      _visitables.get("containerResource").add(this.containerResource);
    }
    return (A) this;
  }

  public Boolean hasContainerResource() {
    return this.containerResource != null;
  }

  public V2MetricStatusFluent.ContainerResourceNested withNewContainerResource() {
    return new V2MetricStatusFluentImpl.ContainerResourceNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ContainerResourceNested
      withNewContainerResourceLike(
          io.kubernetes.client.openapi.models.V2ContainerResourceMetricStatus item) {
    return new V2MetricStatusFluentImpl.ContainerResourceNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ContainerResourceNested
      editContainerResource() {
    return withNewContainerResourceLike(getContainerResource());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ContainerResourceNested
      editOrNewContainerResource() {
    return withNewContainerResourceLike(
        getContainerResource() != null
            ? getContainerResource()
            : new io.kubernetes.client.openapi.models.V2ContainerResourceMetricStatusBuilder()
                .build());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ContainerResourceNested
      editOrNewContainerResourceLike(
          io.kubernetes.client.openapi.models.V2ContainerResourceMetricStatus item) {
    return withNewContainerResourceLike(
        getContainerResource() != null ? getContainerResource() : item);
  }

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

  public io.kubernetes.client.openapi.models.V2ExternalMetricStatus buildExternal() {
    return this.external != null ? this.external.build() : null;
  }

  public A withExternal(io.kubernetes.client.openapi.models.V2ExternalMetricStatus external) {
    _visitables.get("external").remove(this.external);
    if (external != null) {
      this.external =
          new io.kubernetes.client.openapi.models.V2ExternalMetricStatusBuilder(external);
      _visitables.get("external").add(this.external);
    }
    return (A) this;
  }

  public java.lang.Boolean hasExternal() {
    return this.external != null;
  }

  public V2MetricStatusFluent.ExternalNested withNewExternal() {
    return new V2MetricStatusFluentImpl.ExternalNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ExternalNested
      withNewExternalLike(io.kubernetes.client.openapi.models.V2ExternalMetricStatus item) {
    return new io.kubernetes.client.openapi.models.V2MetricStatusFluentImpl.ExternalNestedImpl(
        item);
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ExternalNested editExternal() {
    return withNewExternalLike(getExternal());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ExternalNested
      editOrNewExternal() {
    return withNewExternalLike(
        getExternal() != null
            ? getExternal()
            : new io.kubernetes.client.openapi.models.V2ExternalMetricStatusBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ExternalNested
      editOrNewExternalLike(io.kubernetes.client.openapi.models.V2ExternalMetricStatus item) {
    return withNewExternalLike(getExternal() != null ? getExternal() : item);
  }

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

  public io.kubernetes.client.openapi.models.V2ObjectMetricStatus buildObject() {
    return this._object != null ? this._object.build() : null;
  }

  public A withObject(io.kubernetes.client.openapi.models.V2ObjectMetricStatus _object) {
    _visitables.get("_object").remove(this._object);
    if (_object != null) {
      this._object = new V2ObjectMetricStatusBuilder(_object);
      _visitables.get("_object").add(this._object);
    }
    return (A) this;
  }

  public java.lang.Boolean hasObject() {
    return this._object != null;
  }

  public V2MetricStatusFluent.ObjectNested withNewObject() {
    return new V2MetricStatusFluentImpl.ObjectNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ObjectNested withNewObjectLike(
      io.kubernetes.client.openapi.models.V2ObjectMetricStatus item) {
    return new io.kubernetes.client.openapi.models.V2MetricStatusFluentImpl.ObjectNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ObjectNested editObject() {
    return withNewObjectLike(getObject());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ObjectNested
      editOrNewObject() {
    return withNewObjectLike(
        getObject() != null
            ? getObject()
            : new io.kubernetes.client.openapi.models.V2ObjectMetricStatusBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ObjectNested
      editOrNewObjectLike(io.kubernetes.client.openapi.models.V2ObjectMetricStatus item) {
    return withNewObjectLike(getObject() != null ? getObject() : item);
  }

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

  public io.kubernetes.client.openapi.models.V2PodsMetricStatus buildPods() {
    return this.pods != null ? this.pods.build() : null;
  }

  public A withPods(io.kubernetes.client.openapi.models.V2PodsMetricStatus pods) {
    _visitables.get("pods").remove(this.pods);
    if (pods != null) {
      this.pods = new io.kubernetes.client.openapi.models.V2PodsMetricStatusBuilder(pods);
      _visitables.get("pods").add(this.pods);
    }
    return (A) this;
  }

  public java.lang.Boolean hasPods() {
    return this.pods != null;
  }

  public V2MetricStatusFluent.PodsNested withNewPods() {
    return new V2MetricStatusFluentImpl.PodsNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.PodsNested withNewPodsLike(
      io.kubernetes.client.openapi.models.V2PodsMetricStatus item) {
    return new io.kubernetes.client.openapi.models.V2MetricStatusFluentImpl.PodsNestedImpl(item);
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.PodsNested editPods() {
    return withNewPodsLike(getPods());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.PodsNested editOrNewPods() {
    return withNewPodsLike(
        getPods() != null
            ? getPods()
            : new io.kubernetes.client.openapi.models.V2PodsMetricStatusBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.PodsNested editOrNewPodsLike(
      io.kubernetes.client.openapi.models.V2PodsMetricStatus item) {
    return withNewPodsLike(getPods() != null ? getPods() : item);
  }

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

  public io.kubernetes.client.openapi.models.V2ResourceMetricStatus buildResource() {
    return this.resource != null ? this.resource.build() : null;
  }

  public A withResource(io.kubernetes.client.openapi.models.V2ResourceMetricStatus resource) {
    _visitables.get("resource").remove(this.resource);
    if (resource != null) {
      this.resource =
          new io.kubernetes.client.openapi.models.V2ResourceMetricStatusBuilder(resource);
      _visitables.get("resource").add(this.resource);
    }
    return (A) this;
  }

  public java.lang.Boolean hasResource() {
    return this.resource != null;
  }

  public V2MetricStatusFluent.ResourceNested withNewResource() {
    return new V2MetricStatusFluentImpl.ResourceNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ResourceNested
      withNewResourceLike(io.kubernetes.client.openapi.models.V2ResourceMetricStatus item) {
    return new io.kubernetes.client.openapi.models.V2MetricStatusFluentImpl.ResourceNestedImpl(
        item);
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ResourceNested editResource() {
    return withNewResourceLike(getResource());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ResourceNested
      editOrNewResource() {
    return withNewResourceLike(
        getResource() != null
            ? getResource()
            : new io.kubernetes.client.openapi.models.V2ResourceMetricStatusBuilder().build());
  }

  public io.kubernetes.client.openapi.models.V2MetricStatusFluent.ResourceNested
      editOrNewResourceLike(io.kubernetes.client.openapi.models.V2ResourceMetricStatus item) {
    return withNewResourceLike(getResource() != null ? getResource() : item);
  }

  public java.lang.String getType() {
    return this.type;
  }

  public A withType(java.lang.String type) {
    this.type = type;
    return (A) this;
  }

  public java.lang.Boolean hasType() {
    return this.type != null;
  }

  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    V2MetricStatusFluentImpl that = (V2MetricStatusFluentImpl) o;
    if (containerResource != null
        ? !containerResource.equals(that.containerResource)
        : that.containerResource != null) return false;
    if (external != null ? !external.equals(that.external) : that.external != null) return false;
    if (_object != null ? !_object.equals(that._object) : that._object != null) return false;
    if (pods != null ? !pods.equals(that.pods) : that.pods != null) return false;
    if (resource != null ? !resource.equals(that.resource) : that.resource != null) return false;
    if (type != null ? !type.equals(that.type) : that.type != null) return false;
    return true;
  }

  public int hashCode() {
    return java.util.Objects.hash(
        containerResource, external, _object, pods, resource, type, super.hashCode());
  }

  public java.lang.String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (containerResource != null) {
      sb.append("containerResource:");
      sb.append(containerResource + ",");
    }
    if (external != null) {
      sb.append("external:");
      sb.append(external + ",");
    }
    if (_object != null) {
      sb.append("_object:");
      sb.append(_object + ",");
    }
    if (pods != null) {
      sb.append("pods:");
      sb.append(pods + ",");
    }
    if (resource != null) {
      sb.append("resource:");
      sb.append(resource + ",");
    }
    if (type != null) {
      sb.append("type:");
      sb.append(type);
    }
    sb.append("}");
    return sb.toString();
  }

  class ContainerResourceNestedImpl
      extends V2ContainerResourceMetricStatusFluentImpl<
          V2MetricStatusFluent.ContainerResourceNested>
      implements io.kubernetes.client.openapi.models.V2MetricStatusFluent.ContainerResourceNested<
              N>,
          Nested {
    ContainerResourceNestedImpl(V2ContainerResourceMetricStatus item) {
      this.builder = new V2ContainerResourceMetricStatusBuilder(this, item);
    }

    ContainerResourceNestedImpl() {
      this.builder =
          new io.kubernetes.client.openapi.models.V2ContainerResourceMetricStatusBuilder(this);
    }

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

    public N and() {
      return (N) V2MetricStatusFluentImpl.this.withContainerResource(builder.build());
    }

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

  class ExternalNestedImpl
      extends V2ExternalMetricStatusFluentImpl>
      implements io.kubernetes.client.openapi.models.V2MetricStatusFluent.ExternalNested,
          io.kubernetes.client.fluent.Nested {
    ExternalNestedImpl(V2ExternalMetricStatus item) {
      this.builder = new V2ExternalMetricStatusBuilder(this, item);
    }

    ExternalNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V2ExternalMetricStatusBuilder(this);
    }

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

    public N and() {
      return (N) V2MetricStatusFluentImpl.this.withExternal(builder.build());
    }

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

  class ObjectNestedImpl
      extends V2ObjectMetricStatusFluentImpl>
      implements io.kubernetes.client.openapi.models.V2MetricStatusFluent.ObjectNested,
          io.kubernetes.client.fluent.Nested {
    ObjectNestedImpl(io.kubernetes.client.openapi.models.V2ObjectMetricStatus item) {
      this.builder = new V2ObjectMetricStatusBuilder(this, item);
    }

    ObjectNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V2ObjectMetricStatusBuilder(this);
    }

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

    public N and() {
      return (N) V2MetricStatusFluentImpl.this.withObject(builder.build());
    }

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

  class PodsNestedImpl extends V2PodsMetricStatusFluentImpl>
      implements io.kubernetes.client.openapi.models.V2MetricStatusFluent.PodsNested,
          io.kubernetes.client.fluent.Nested {
    PodsNestedImpl(io.kubernetes.client.openapi.models.V2PodsMetricStatus item) {
      this.builder = new V2PodsMetricStatusBuilder(this, item);
    }

    PodsNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V2PodsMetricStatusBuilder(this);
    }

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

    public N and() {
      return (N) V2MetricStatusFluentImpl.this.withPods(builder.build());
    }

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

  class ResourceNestedImpl
      extends V2ResourceMetricStatusFluentImpl>
      implements io.kubernetes.client.openapi.models.V2MetricStatusFluent.ResourceNested,
          io.kubernetes.client.fluent.Nested {
    ResourceNestedImpl(V2ResourceMetricStatus item) {
      this.builder = new V2ResourceMetricStatusBuilder(this, item);
    }

    ResourceNestedImpl() {
      this.builder = new io.kubernetes.client.openapi.models.V2ResourceMetricStatusBuilder(this);
    }

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

    public N and() {
      return (N) V2MetricStatusFluentImpl.this.withResource(builder.build());
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy