# 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::ServiceFabric::V6_3_0_9 module Models # # Specifies the parameters needed to enable periodic backup. # class EnableBackupDescription include MsRestAzure # @return [String] Name of the backup policy to be used for enabling # periodic backups. attr_accessor :backup_policy_name # # Mapper for EnableBackupDescription class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EnableBackupDescription', type: { name: 'Composite', class_name: 'EnableBackupDescription', model_properties: { backup_policy_name: { client_side_validation: true, required: true, serialized_name: 'BackupPolicyName', type: { name: 'String' } } } } } end end end end