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

io.kubernetes.client.openapi.models.V1DeploymentStatusFluentImpl 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;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.function.Predicate;

/** Generated */
@SuppressWarnings(value = "unchecked")
public class V1DeploymentStatusFluentImpl>
    extends BaseFluent implements V1DeploymentStatusFluent {
  public V1DeploymentStatusFluentImpl() {}

  public V1DeploymentStatusFluentImpl(
      io.kubernetes.client.openapi.models.V1DeploymentStatus instance) {
    this.withAvailableReplicas(instance.getAvailableReplicas());

    this.withCollisionCount(instance.getCollisionCount());

    this.withConditions(instance.getConditions());

    this.withObservedGeneration(instance.getObservedGeneration());

    this.withReadyReplicas(instance.getReadyReplicas());

    this.withReplicas(instance.getReplicas());

    this.withUnavailableReplicas(instance.getUnavailableReplicas());

    this.withUpdatedReplicas(instance.getUpdatedReplicas());
  }

  private Integer availableReplicas;
  private java.lang.Integer collisionCount;
  private ArrayList conditions;
  private Long observedGeneration;
  private java.lang.Integer readyReplicas;
  private java.lang.Integer replicas;
  private java.lang.Integer unavailableReplicas;
  private java.lang.Integer updatedReplicas;

  public java.lang.Integer getAvailableReplicas() {
    return this.availableReplicas;
  }

  public A withAvailableReplicas(java.lang.Integer availableReplicas) {
    this.availableReplicas = availableReplicas;
    return (A) this;
  }

  public Boolean hasAvailableReplicas() {
    return this.availableReplicas != null;
  }

  public java.lang.Integer getCollisionCount() {
    return this.collisionCount;
  }

  public A withCollisionCount(java.lang.Integer collisionCount) {
    this.collisionCount = collisionCount;
    return (A) this;
  }

  public java.lang.Boolean hasCollisionCount() {
    return this.collisionCount != null;
  }

  public A addToConditions(java.lang.Integer index, V1DeploymentCondition item) {
    if (this.conditions == null) {
      this.conditions =
          new java.util.ArrayList<
              io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder>();
    }
    io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder =
        new io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder(item);
    _visitables
        .get("conditions")
        .add(index >= 0 ? index : _visitables.get("conditions").size(), builder);
    this.conditions.add(index >= 0 ? index : conditions.size(), builder);
    return (A) this;
  }

  public A setToConditions(
      java.lang.Integer index, io.kubernetes.client.openapi.models.V1DeploymentCondition item) {
    if (this.conditions == null) {
      this.conditions =
          new java.util.ArrayList<
              io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder>();
    }
    io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder =
        new io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder(item);
    if (index < 0 || index >= _visitables.get("conditions").size()) {
      _visitables.get("conditions").add(builder);
    } else {
      _visitables.get("conditions").set(index, builder);
    }
    if (index < 0 || index >= conditions.size()) {
      conditions.add(builder);
    } else {
      conditions.set(index, builder);
    }
    return (A) this;
  }

  public A addToConditions(io.kubernetes.client.openapi.models.V1DeploymentCondition... items) {
    if (this.conditions == null) {
      this.conditions =
          new java.util.ArrayList<
              io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder>();
    }
    for (io.kubernetes.client.openapi.models.V1DeploymentCondition item : items) {
      io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder =
          new io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder(item);
      _visitables.get("conditions").add(builder);
      this.conditions.add(builder);
    }
    return (A) this;
  }

  public A addAllToConditions(
      Collection items) {
    if (this.conditions == null) {
      this.conditions =
          new java.util.ArrayList<
              io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder>();
    }
    for (io.kubernetes.client.openapi.models.V1DeploymentCondition item : items) {
      io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder =
          new io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder(item);
      _visitables.get("conditions").add(builder);
      this.conditions.add(builder);
    }
    return (A) this;
  }

  public A removeFromConditions(
      io.kubernetes.client.openapi.models.V1DeploymentCondition... items) {
    for (io.kubernetes.client.openapi.models.V1DeploymentCondition item : items) {
      io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder =
          new io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder(item);
      _visitables.get("conditions").remove(builder);
      if (this.conditions != null) {
        this.conditions.remove(builder);
      }
    }
    return (A) this;
  }

  public A removeAllFromConditions(
      java.util.Collection items) {
    for (io.kubernetes.client.openapi.models.V1DeploymentCondition item : items) {
      io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder =
          new io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder(item);
      _visitables.get("conditions").remove(builder);
      if (this.conditions != null) {
        this.conditions.remove(builder);
      }
    }
    return (A) this;
  }

  public A removeMatchingFromConditions(
      Predicate predicate) {
    if (conditions == null) return (A) this;
    final Iterator each =
        conditions.iterator();
    final List visitables = _visitables.get("conditions");
    while (each.hasNext()) {
      io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder = each.next();
      if (predicate.test(builder)) {
        visitables.remove(builder);
        each.remove();
      }
    }
    return (A) this;
  }

  /**
   * This method has been deprecated, please use method buildConditions instead.
   *
   * @return The buildable object.
   */
  @Deprecated
  public List getConditions() {
    return conditions != null ? build(conditions) : null;
  }

  public java.util.List
      buildConditions() {
    return conditions != null ? build(conditions) : null;
  }

  public io.kubernetes.client.openapi.models.V1DeploymentCondition buildCondition(
      java.lang.Integer index) {
    return this.conditions.get(index).build();
  }

  public io.kubernetes.client.openapi.models.V1DeploymentCondition buildFirstCondition() {
    return this.conditions.get(0).build();
  }

  public io.kubernetes.client.openapi.models.V1DeploymentCondition buildLastCondition() {
    return this.conditions.get(conditions.size() - 1).build();
  }

  public io.kubernetes.client.openapi.models.V1DeploymentCondition buildMatchingCondition(
      java.util.function.Predicate
          predicate) {
    for (io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder item : conditions) {
      if (predicate.test(item)) {
        return item.build();
      }
    }
    return null;
  }

  public java.lang.Boolean hasMatchingCondition(
      java.util.function.Predicate
          predicate) {
    for (io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder item : conditions) {
      if (predicate.test(item)) {
        return true;
      }
    }
    return false;
  }

  public A withConditions(
      java.util.List conditions) {
    if (this.conditions != null) {
      _visitables.get("conditions").removeAll(this.conditions);
    }
    if (conditions != null) {
      this.conditions = new java.util.ArrayList();
      for (io.kubernetes.client.openapi.models.V1DeploymentCondition item : conditions) {
        this.addToConditions(item);
      }
    } else {
      this.conditions = null;
    }
    return (A) this;
  }

  public A withConditions(io.kubernetes.client.openapi.models.V1DeploymentCondition... conditions) {
    if (this.conditions != null) {
      this.conditions.clear();
    }
    if (conditions != null) {
      for (io.kubernetes.client.openapi.models.V1DeploymentCondition item : conditions) {
        this.addToConditions(item);
      }
    }
    return (A) this;
  }

  public java.lang.Boolean hasConditions() {
    return conditions != null && !conditions.isEmpty();
  }

  public V1DeploymentStatusFluent.ConditionsNested addNewCondition() {
    return new V1DeploymentStatusFluentImpl.ConditionsNestedImpl();
  }

  public io.kubernetes.client.openapi.models.V1DeploymentStatusFluent.ConditionsNested
      addNewConditionLike(io.kubernetes.client.openapi.models.V1DeploymentCondition item) {
    return new V1DeploymentStatusFluentImpl.ConditionsNestedImpl(-1, item);
  }

  public io.kubernetes.client.openapi.models.V1DeploymentStatusFluent.ConditionsNested
      setNewConditionLike(
          java.lang.Integer index, io.kubernetes.client.openapi.models.V1DeploymentCondition item) {
    return new io.kubernetes.client.openapi.models.V1DeploymentStatusFluentImpl
        .ConditionsNestedImpl(index, item);
  }

  public io.kubernetes.client.openapi.models.V1DeploymentStatusFluent.ConditionsNested
      editCondition(java.lang.Integer index) {
    if (conditions.size() <= index)
      throw new RuntimeException("Can't edit conditions. Index exceeds size.");
    return setNewConditionLike(index, buildCondition(index));
  }

  public io.kubernetes.client.openapi.models.V1DeploymentStatusFluent.ConditionsNested
      editFirstCondition() {
    if (conditions.size() == 0)
      throw new RuntimeException("Can't edit first conditions. The list is empty.");
    return setNewConditionLike(0, buildCondition(0));
  }

  public io.kubernetes.client.openapi.models.V1DeploymentStatusFluent.ConditionsNested
      editLastCondition() {
    int index = conditions.size() - 1;
    if (index < 0) throw new RuntimeException("Can't edit last conditions. The list is empty.");
    return setNewConditionLike(index, buildCondition(index));
  }

  public io.kubernetes.client.openapi.models.V1DeploymentStatusFluent.ConditionsNested
      editMatchingCondition(
          java.util.function.Predicate<
                  io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder>
              predicate) {
    int index = -1;
    for (int i = 0; i < conditions.size(); i++) {
      if (predicate.test(conditions.get(i))) {
        index = i;
        break;
      }
    }
    if (index < 0) throw new RuntimeException("Can't edit matching conditions. No match found.");
    return setNewConditionLike(index, buildCondition(index));
  }

  public java.lang.Long getObservedGeneration() {
    return this.observedGeneration;
  }

  public A withObservedGeneration(java.lang.Long observedGeneration) {
    this.observedGeneration = observedGeneration;
    return (A) this;
  }

  public java.lang.Boolean hasObservedGeneration() {
    return this.observedGeneration != null;
  }

  public java.lang.Integer getReadyReplicas() {
    return this.readyReplicas;
  }

  public A withReadyReplicas(java.lang.Integer readyReplicas) {
    this.readyReplicas = readyReplicas;
    return (A) this;
  }

  public java.lang.Boolean hasReadyReplicas() {
    return this.readyReplicas != null;
  }

  public java.lang.Integer getReplicas() {
    return this.replicas;
  }

  public A withReplicas(java.lang.Integer replicas) {
    this.replicas = replicas;
    return (A) this;
  }

  public java.lang.Boolean hasReplicas() {
    return this.replicas != null;
  }

  public java.lang.Integer getUnavailableReplicas() {
    return this.unavailableReplicas;
  }

  public A withUnavailableReplicas(java.lang.Integer unavailableReplicas) {
    this.unavailableReplicas = unavailableReplicas;
    return (A) this;
  }

  public java.lang.Boolean hasUnavailableReplicas() {
    return this.unavailableReplicas != null;
  }

  public java.lang.Integer getUpdatedReplicas() {
    return this.updatedReplicas;
  }

  public A withUpdatedReplicas(java.lang.Integer updatedReplicas) {
    this.updatedReplicas = updatedReplicas;
    return (A) this;
  }

  public java.lang.Boolean hasUpdatedReplicas() {
    return this.updatedReplicas != null;
  }

  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    V1DeploymentStatusFluentImpl that = (V1DeploymentStatusFluentImpl) o;
    if (availableReplicas != null
        ? !availableReplicas.equals(that.availableReplicas)
        : that.availableReplicas != null) return false;
    if (collisionCount != null
        ? !collisionCount.equals(that.collisionCount)
        : that.collisionCount != null) return false;
    if (conditions != null ? !conditions.equals(that.conditions) : that.conditions != null)
      return false;
    if (observedGeneration != null
        ? !observedGeneration.equals(that.observedGeneration)
        : that.observedGeneration != null) return false;
    if (readyReplicas != null
        ? !readyReplicas.equals(that.readyReplicas)
        : that.readyReplicas != null) return false;
    if (replicas != null ? !replicas.equals(that.replicas) : that.replicas != null) return false;
    if (unavailableReplicas != null
        ? !unavailableReplicas.equals(that.unavailableReplicas)
        : that.unavailableReplicas != null) return false;
    if (updatedReplicas != null
        ? !updatedReplicas.equals(that.updatedReplicas)
        : that.updatedReplicas != null) return false;
    return true;
  }

  public int hashCode() {
    return java.util.Objects.hash(
        availableReplicas,
        collisionCount,
        conditions,
        observedGeneration,
        readyReplicas,
        replicas,
        unavailableReplicas,
        updatedReplicas,
        super.hashCode());
  }

  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (availableReplicas != null) {
      sb.append("availableReplicas:");
      sb.append(availableReplicas + ",");
    }
    if (collisionCount != null) {
      sb.append("collisionCount:");
      sb.append(collisionCount + ",");
    }
    if (conditions != null && !conditions.isEmpty()) {
      sb.append("conditions:");
      sb.append(conditions + ",");
    }
    if (observedGeneration != null) {
      sb.append("observedGeneration:");
      sb.append(observedGeneration + ",");
    }
    if (readyReplicas != null) {
      sb.append("readyReplicas:");
      sb.append(readyReplicas + ",");
    }
    if (replicas != null) {
      sb.append("replicas:");
      sb.append(replicas + ",");
    }
    if (unavailableReplicas != null) {
      sb.append("unavailableReplicas:");
      sb.append(unavailableReplicas + ",");
    }
    if (updatedReplicas != null) {
      sb.append("updatedReplicas:");
      sb.append(updatedReplicas);
    }
    sb.append("}");
    return sb.toString();
  }

  class ConditionsNestedImpl
      extends V1DeploymentConditionFluentImpl>
      implements io.kubernetes.client.openapi.models.V1DeploymentStatusFluent.ConditionsNested,
          Nested {
    ConditionsNestedImpl(
        java.lang.Integer index, io.kubernetes.client.openapi.models.V1DeploymentCondition item) {
      this.index = index;
      this.builder = new V1DeploymentConditionBuilder(this, item);
    }

    ConditionsNestedImpl() {
      this.index = -1;
      this.builder = new io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder(this);
    }

    io.kubernetes.client.openapi.models.V1DeploymentConditionBuilder builder;
    java.lang.Integer index;

    public N and() {
      return (N) V1DeploymentStatusFluentImpl.this.setToConditions(index, builder.build());
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy