Class V1SuccessPolicyRule

java.lang.Object
io.kubernetes.client.openapi.models.V1SuccessPolicyRule

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2025-02-12T21:15:49.397498Z[Etc/UTC]", comments="Generator version: 7.6.0") public class V1SuccessPolicyRule extends Object
SuccessPolicyRule describes rule for declaring a Job as succeeded. Each rule must have at least one of the \"succeededIndexes\" or \"succeededCount\" specified.
  • Field Details

  • Constructor Details

    • V1SuccessPolicyRule

      public V1SuccessPolicyRule()
  • Method Details

    • succeededCount

      public V1SuccessPolicyRule succeededCount(Integer succeededCount)
    • getSucceededCount

      @Nullable public Integer getSucceededCount()
      succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job. When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes. For example, given that succeededIndexes is \"1-4\", succeededCount is \"3\", and completed indexes are \"1\", \"3\", and \"5\", the Job isn't declared as succeeded because only \"1\" and \"3\" indexes are considered in that rules. When this field is null, this doesn't default to any value and is never evaluated at any time. When specified it needs to be a positive integer.
      Returns:
      succeededCount
    • setSucceededCount

      public void setSucceededCount(Integer succeededCount)
    • succeededIndexes

      public V1SuccessPolicyRule succeededIndexes(String succeededIndexes)
    • getSucceededIndexes

      @Nullable public String getSucceededIndexes()
      succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job. The list of indexes must be within 0 to \".spec.completions-1\" and must not contain duplicates. At least one element is required. The indexes are represented as intervals separated by commas. The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen. The number are listed in represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". When this field is null, this field doesn't default to any value and is never evaluated at any time.
      Returns:
      succeededIndexes
    • setSucceededIndexes

      public void setSucceededIndexes(String succeededIndexes)
    • 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
    • validateJsonElement

      public static void validateJsonElement(com.google.gson.JsonElement jsonElement) throws IOException
      Validates the JSON Element and throws an exception if issues found
      Parameters:
      jsonElement - JSON Element
      Throws:
      IOException - if the JSON Element is invalid with respect to V1SuccessPolicyRule
    • fromJson

      public static V1SuccessPolicyRule fromJson(String jsonString) throws IOException
      Create an instance of V1SuccessPolicyRule given an JSON string
      Parameters:
      jsonString - JSON string
      Returns:
      An instance of V1SuccessPolicyRule
      Throws:
      IOException - if the JSON string is invalid with respect to V1SuccessPolicyRule
    • toJson

      public String toJson()
      Convert an instance of V1SuccessPolicyRule to an JSON string
      Returns:
      JSON string