java.lang.Object
com.microsoft.azure.management.containerregistry.Argument

public class Argument extends Object
The properties of a run argument.
  • Constructor Details

    • Argument

      public Argument()
  • Method Details

    • name

      public String name()
      Get the name of the argument.
      Returns:
      the name value
    • withName

      public Argument withName(String name)
      Set the name of the argument.
      Parameters:
      name - the name value to set
      Returns:
      the Argument object itself.
    • value

      public String value()
      Get the value of the argument.
      Returns:
      the value value
    • withValue

      public Argument withValue(String value)
      Set the value of the argument.
      Parameters:
      value - the value value to set
      Returns:
      the Argument object itself.
    • isSecret

      public Boolean isSecret()
      Get flag to indicate whether the argument represents a secret and want to be removed from build logs.
      Returns:
      the isSecret value
    • withIsSecret

      public Argument withIsSecret(Boolean isSecret)
      Set flag to indicate whether the argument represents a secret and want to be removed from build logs.
      Parameters:
      isSecret - the isSecret value to set
      Returns:
      the Argument object itself.