Package com.strongdm.api
Class SecretStoreHistory
java.lang.Object
com.strongdm.api.SecretStoreHistory
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 Summary
-
Method Summary
Modifier and TypeMethodDescriptionThe unique identifier of the Activity that produced this change to the SecretStore.If this SecretStore was deleted, the time it was deleted.The complete SecretStore state at this time.The time at which the SecretStore state was recorded.void
setActivityId
(String in) The unique identifier of the Activity that produced this change to the SecretStore.void
setDeletedAt
(Date in) If this SecretStore was deleted, the time it was deleted.void
The complete SecretStore state at this time.void
setTimestamp
(Date in) The time at which the SecretStore state was recorded.
-
Constructor Details
-
SecretStoreHistory
public SecretStoreHistory()
-
-
Method Details
-
getActivityId
The unique identifier of the Activity that produced this change to the SecretStore. May be empty for some system-initiated updates. -
setActivityId
The unique identifier of the Activity that produced this change to the SecretStore. May be empty for some system-initiated updates. -
getDeletedAt
If this SecretStore was deleted, the time it was deleted. -
setDeletedAt
If this SecretStore was deleted, the time it was deleted. -
getSecretStore
The complete SecretStore state at this time. -
setSecretStore
The complete SecretStore state at this time. -
getTimestamp
The time at which the SecretStore state was recorded. -
setTimestamp
The time at which the SecretStore state was recorded.
-