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

io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricTargetFluentImpl Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model.autoscaling.v2beta2;

import java.lang.Integer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.model.Quantity;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
import java.util.Map;
import java.util.LinkedHashMap;

 /**
  * Generated
  */
public class MetricTargetFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricTargetFluent{
  public MetricTargetFluentImpl() {
  }
  public MetricTargetFluentImpl(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricTarget instance) {
    this.withAverageUtilization(instance.getAverageUtilization()); 
    this.withAverageValue(instance.getAverageValue()); 
    this.withType(instance.getType()); 
    this.withValue(instance.getValue()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

  }
  private java.lang.Integer averageUtilization;
  private io.fabric8.kubernetes.api.model.Quantity averageValue;
  private java.lang.String type;
  private io.fabric8.kubernetes.api.model.Quantity value;
  private java.util.Map additionalProperties;
  public java.lang.Integer getAverageUtilization() {
    return this.averageUtilization;
  }
  public A withAverageUtilization(java.lang.Integer averageUtilization) {
    this.averageUtilization=averageUtilization; return (A) this;
  }
  public java.lang.Boolean hasAverageUtilization() {
    return this.averageUtilization != null;
  }
  public io.fabric8.kubernetes.api.model.Quantity getAverageValue() {
    return this.averageValue;
  }
  public A withAverageValue(io.fabric8.kubernetes.api.model.Quantity averageValue) {
    this.averageValue=averageValue; return (A) this;
  }
  public java.lang.Boolean hasAverageValue() {
    return this.averageValue != null;
  }
  public A withNewAverageValue(java.lang.String amount,java.lang.String format) {
    return (A)withAverageValue(new Quantity(amount, format));
  }
  public A withNewAverageValue(java.lang.String amount) {
    return (A)withAverageValue(new Quantity(amount));
  }
  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;
  }
  
  /**
   * Method is deprecated. use withType instead.
   */
  @java.lang.Deprecated
  public A withNewType(java.lang.String arg0) {
    return (A)withType(new String(arg0));
  }
  public io.fabric8.kubernetes.api.model.Quantity getValue() {
    return this.value;
  }
  public A withValue(io.fabric8.kubernetes.api.model.Quantity value) {
    this.value=value; return (A) this;
  }
  public java.lang.Boolean hasValue() {
    return this.value != null;
  }
  public A withNewValue(java.lang.String amount,java.lang.String format) {
    return (A)withValue(new Quantity(amount, format));
  }
  public A withNewValue(java.lang.String amount) {
    return (A)withValue(new Quantity(amount));
  }
  public A addToAdditionalProperties(java.lang.String key,java.lang.Object value) {
    if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
  }
  public A addToAdditionalProperties(java.util.Map map) {
    if(this.additionalProperties == null && map != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
    if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
  }
  public A removeFromAdditionalProperties(java.lang.String key) {
    if(this.additionalProperties == null) { return (A) this; }
    if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
  }
  public A removeFromAdditionalProperties(java.util.Map map) {
    if(this.additionalProperties == null) { return (A) this; }
    if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
  }
  public java.util.Map getAdditionalProperties() {
    return this.additionalProperties;
  }
  public A withAdditionalProperties(java.util.Map additionalProperties) {
    if (additionalProperties == null) { this.additionalProperties =  null;} else {this.additionalProperties = new java.util.LinkedHashMap(additionalProperties);} return (A) this;
  }
  public java.lang.Boolean hasAdditionalProperties() {
    return this.additionalProperties != null;
  }
  public boolean equals(java.lang.Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    MetricTargetFluentImpl that = (MetricTargetFluentImpl) o;
    if (averageUtilization != null ? !averageUtilization.equals(that.averageUtilization) :that.averageUtilization != null) return false;
    if (averageValue != null ? !averageValue.equals(that.averageValue) :that.averageValue != null) return false;
    if (type != null ? !type.equals(that.type) :that.type != null) return false;
    if (value != null ? !value.equals(that.value) :that.value != null) return false;
    if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
    return true;
  }
  public int hashCode() {
    return java.util.Objects.hash(averageUtilization,  averageValue,  type,  value,  additionalProperties,  super.hashCode());
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy