EncryptionService Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A service that allows server-side encryption to be used.
[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190401.EncryptionServiceTypeConverter))]
public class EncryptionService : Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190401.IEncryptionService
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190401.EncryptionServiceTypeConverter))>]
type EncryptionService = class
interface IEncryptionService
interface IJsonSerializable
Public Class EncryptionService
Implements IEncryptionService
- Inheritance
-
EncryptionService
- Attributes
- Implements
Constructors
EncryptionService() |
Creates an new EncryptionService instance. |
Properties
Enabled |
A boolean indicating whether or not the service encrypts the data as it is stored. |
LastEnabledTime |
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. |
Methods
DeserializeFromDictionary(IDictionary) |
Deserializes a IDictionary into an instance of EncryptionService. |
DeserializeFromPSObject(PSObject) |
Deserializes a PSObject into an instance of EncryptionService. |
FromJson(JsonNode) |
Deserializes a JsonNode into an instance of Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190401.IEncryptionService. |
FromJsonString(String) |
Creates a new instance of EncryptionService, deserializing the content from a json string. |
ToJson(JsonObject, SerializationMode) |
Serializes this instance of EncryptionService into a JsonNode. |
ToJsonString() |
Serializes this instance to a json string. |