Class V1beta2DeviceToleration

java.lang.Object
io.micronaut.kubernetes.client.openapi.model.V1beta2DeviceToleration

@Generated("io.micronaut.openapi.generator.JavaMicronautClientCodegen") public class V1beta2DeviceToleration extends Object
The ResourceClaim this DeviceToleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.
  • Field Details

  • Constructor Details

    • V1beta2DeviceToleration

      public V1beta2DeviceToleration()
  • Method Details

    • getEffect

      public String getEffect()
      Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule and NoExecute.
      Returns:
      the effect property value
    • setEffect

      public void setEffect(String effect)
      Set the effect property value
      Parameters:
      effect - property value to set
    • effect

      public V1beta2DeviceToleration effect(String effect)
      Set effect in a chainable fashion.
      Returns:
      The same instance of V1beta2DeviceToleration for chaining.
    • getKey

      public String getKey()
      Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. Must be a label name.
      Returns:
      the key property value
    • setKey

      public void setKey(String key)
      Set the key property value
      Parameters:
      key - property value to set
    • key

      public V1beta2DeviceToleration key(String key)
      Set key in a chainable fashion.
      Returns:
      The same instance of V1beta2DeviceToleration for chaining.
    • getOperator

      public String getOperator()
      Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a ResourceClaim can tolerate all taints of a particular category.
      Returns:
      the operator property value
    • setOperator

      public void setOperator(String operator)
      Set the operator property value
      Parameters:
      operator - property value to set
    • operator

      public V1beta2DeviceToleration operator(String operator)
      Set operator in a chainable fashion.
      Returns:
      The same instance of V1beta2DeviceToleration for chaining.
    • getTolerationSeconds

      public Long getTolerationSeconds()
      TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. If larger than zero, the time when the pod needs to be evicted is calculated as <time when taint was adedd> + <toleration seconds>.
      Returns:
      the tolerationSeconds property value
    • setTolerationSeconds

      public void setTolerationSeconds(Long tolerationSeconds)
      Set the tolerationSeconds property value
      Parameters:
      tolerationSeconds - property value to set
    • tolerationSeconds

      public V1beta2DeviceToleration tolerationSeconds(Long tolerationSeconds)
      Set tolerationSeconds in a chainable fashion.
      Returns:
      The same instance of V1beta2DeviceToleration for chaining.
    • getValue

      public String getValue()
      Value is the taint value the toleration matches to. If the operator is Exists, the value must be empty, otherwise just a regular string. Must be a label value.
      Returns:
      the value property value
    • setValue

      public void setValue(String value)
      Set the value property value
      Parameters:
      value - property value to set
    • value

      public V1beta2DeviceToleration value(String value)
      Set value in a chainable fashion.
      Returns:
      The same instance of V1beta2DeviceToleration for chaining.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object