Class SecretStoreHistory

java.lang.Object
com.strongdm.api.SecretStoreHistory

public class SecretStoreHistory extends Object
SecretStoreHistory records the state of a SecretStore at a given point in time, where every change (create, update and delete) to a SecretStore produces an SecretStoreHistory record.
  • Constructor Details

    • SecretStoreHistory

      public SecretStoreHistory()
  • Method Details

    • getActivityId

      public String getActivityId()
      The unique identifier of the Activity that produced this change to the SecretStore. May be empty for some system-initiated updates.
    • setActivityId

      public void setActivityId(String in)
      The unique identifier of the Activity that produced this change to the SecretStore. May be empty for some system-initiated updates.
    • getDeletedAt

      public Date getDeletedAt()
      If this SecretStore was deleted, the time it was deleted.
    • setDeletedAt

      public void setDeletedAt(Date in)
      If this SecretStore was deleted, the time it was deleted.
    • getSecretStore

      public SecretStore getSecretStore()
      The complete SecretStore state at this time.
    • setSecretStore

      public void setSecretStore(SecretStore in)
      The complete SecretStore state at this time.
    • getTimestamp

      public Date getTimestamp()
      The time at which the SecretStore state was recorded.
    • setTimestamp

      public void setTimestamp(Date in)
      The time at which the SecretStore state was recorded.