Share via


EncryptionService Constructors

Definition

Overloads

EncryptionService()

Initializes a new instance of the EncryptionService class.

EncryptionService(Nullable<Boolean>, Nullable<DateTime>)

Initializes a new instance of the EncryptionService class.

EncryptionService()

Initializes a new instance of the EncryptionService class.

public EncryptionService ();
Public Sub New ()

Applies to

EncryptionService(Nullable<Boolean>, Nullable<DateTime>)

Initializes a new instance of the EncryptionService class.

public EncryptionService (bool? enabled = default, DateTime? lastEnabledTime = default);
new Microsoft.Azure.Management.Storage.Fluent.Models.EncryptionService : Nullable<bool> * Nullable<DateTime> -> Microsoft.Azure.Management.Storage.Fluent.Models.EncryptionService
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional lastEnabledTime As Nullable(Of DateTime) = Nothing)

Parameters

enabled
Nullable<Boolean>

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

lastEnabledTime
Nullable<DateTime>

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.

Applies to