Sha256: 9545cff2a2573f8ac653f764644c9851c8c3b5bcc7e637e0a8f9ed53f2b2d30d
Contents?: true
Size: 1.79 KB
Versions: 23
Compression:
Stored size: 1.79 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Storage::Mgmt::V2018_07_01 module Models # # A service that allows server-side encryption to be used. # class EncryptionService include MsRestAzure # @return [Boolean] A boolean indicating whether or not the service # encrypts the data as it is stored. attr_accessor :enabled # @return [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. attr_accessor :last_enabled_time # # Mapper for EncryptionService class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EncryptionService', type: { name: 'Composite', class_name: 'EncryptionService', model_properties: { enabled: { client_side_validation: true, required: false, serialized_name: 'enabled', type: { name: 'Boolean' } }, last_enabled_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'lastEnabledTime', type: { name: 'DateTime' } } } } } end end end end
Version data entries
23 entries across 23 versions & 1 rubygems