Class Version

java.lang.Object
com.auth0.json.mgmt.actions.Version

public class Version extends Object
Represents a version of an action.
See Also:
Action, ActionsEntity
  • Constructor Details

    • Version

      public Version()
  • Method Details

    • getCode

      public String getCode()
      Returns:
      the code for this action version.
    • getDependencies

      public List<Dependency> getDependencies()
      Returns:
      the dependencies for this action version
    • isDeployed

      public Boolean isDeployed()
      Returns:
      whether this action version is deployed or not.
    • getRuntime

      public String getRuntime()
      Returns:
      the runtime for this action version.
    • getSecrets

      public List<Secret> getSecrets()
      Returns:
      the secrets for this action version.
    • getStatus

      public String getStatus()
      Returns:
      the status for this action version.
    • getNumber

      public Integer getNumber()
      Returns:
      the index of this version in the list of versions for the action.
    • getErrors

      public List<Error> getErrors()
      Returns:
      any errors that occurred while this action version was being built.
    • getBuiltAt

      public Date getBuiltAt()
      Returns:
      the date when this version was built successfully.
    • getCreatedAt

      public Date getCreatedAt()
      Returns:
      the date when this action version was created.
    • getUpdatedAt

      public Date getUpdatedAt()
      Returns:
      the date when this action version was updated.
    • getId

      public String getId()
      Returns:
      the ID of this action version.
    • getAction

      public Action getAction()
      Returns:
      the action to which this version belongs.