Sha256: 2a7292653ce5634f3834f360e28098ef2181374c2d8a5ae087ca215d099f864f
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 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::V2020_08_01_preview module Models # # The service properties for soft delete. # class DeleteRetentionPolicy include MsRestAzure # @return [Boolean] Indicates whether DeleteRetentionPolicy is enabled. attr_accessor :enabled # @return [Integer] Indicates the number of days that the deleted item # should be retained. The minimum specified value can be 1 and the # maximum value can be 365. attr_accessor :days # # Mapper for DeleteRetentionPolicy class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeleteRetentionPolicy', type: { name: 'Composite', class_name: 'DeleteRetentionPolicy', model_properties: { enabled: { client_side_validation: true, required: false, serialized_name: 'enabled', type: { name: 'Boolean' } }, days: { client_side_validation: true, required: false, serialized_name: 'days', constraints: { InclusiveMaximum: 365, InclusiveMinimum: 1 }, type: { name: 'Number' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems