Class V1beta1Variable

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

@Generated("io.micronaut.openapi.generator.JavaMicronautClientCodegen") public class V1beta1Variable extends Object
Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
  • Field Details

  • Constructor Details

    • V1beta1Variable

      public V1beta1Variable(String expression, String name)
  • Method Details

    • getExpression

      public String getExpression()
      Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.
      Returns:
      the expression property value
    • setExpression

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

      public V1beta1Variable expression(String expression)
      Set expression in a chainable fashion.
      Returns:
      The same instance of V1beta1Variable for chaining.
    • getName

      public String getName()
      Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is \"foo\", the variable will be available as `variables.foo`
      Returns:
      the name property value
    • setName

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

      public V1beta1Variable name(String name)
      Set name in a chainable fashion.
      Returns:
      The same instance of V1beta1Variable 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