Aracılığıyla paylaş


EncryptionService Class

  • java.lang.Object
    • com.microsoft.azure.management.storage.EncryptionService

public class EncryptionService

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

Constructor Summary

Constructor Description
EncryptionService()

Method Summary

Modifier and Type Method and Description
java.lang.Boolean enabled()

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

KeyType keyType()

Get encryption key type to be used for the encryption service.

org.joda.time.DateTime lastEnabledTime()

Get gets a rough estimate of the date/time when the encryption was last enabled by the user.

EncryptionService withEnabled(Boolean enabled)

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

EncryptionService withKeyType(KeyType keyType)

Set encryption key type to be used for the encryption service.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

EncryptionService

public EncryptionService()

Method Details

enabled

public Boolean enabled()

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

Returns:

the enabled value

keyType

public KeyType keyType()

Get 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. Possible values include: 'Service', 'Account'.

Returns:

the keyType value

lastEnabledTime

public DateTime lastEnabledTime()

Get 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.

Returns:

the lastEnabledTime value

withEnabled

public EncryptionService withEnabled(Boolean enabled)

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

Parameters:

enabled - the enabled value to set

Returns:

the EncryptionService object itself.

withKeyType

public EncryptionService withKeyType(KeyType keyType)

Set 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. Possible values include: 'Service', 'Account'.

Parameters:

keyType - the keyType value to set

Returns:

the EncryptionService object itself.

Applies to