EncryptionServiceResponse

data class EncryptionServiceResponse(val enabled: Boolean? = null, val keyType: String? = null, val lastEnabledTime: String)

A service that allows server-side encryption to be used.

Constructors

Link copied to clipboard
constructor(enabled: Boolean? = null, keyType: String? = null, lastEnabledTime: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enabled: Boolean? = null

A boolean indicating whether or not the service encrypts the data as it is stored.

Link copied to clipboard
val keyType: String? = null

Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.

Link copied to clipboard

Gets a rough estimate of the date/time when the encryption was last enabled by the user. Only returned when encryption is enabled. There might be some unencrypted blobs which were written after this time, as it is just a rough estimate.