Class: Azure::RecoveryServicesBackup::Mgmt::V2019_06_15::Models::DailyRetentionFormat
- Inherits:
-
Object
- Object
- Azure::RecoveryServicesBackup::Mgmt::V2019_06_15::Models::DailyRetentionFormat
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/daily_retention_format.rb
Overview
Daily retention format.
Instance Attribute Summary collapse
-
#days_of_the_month ⇒ Array<Day>
List of days of the month.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DailyRetentionFormat class as Ruby Hash.
Instance Attribute Details
#days_of_the_month ⇒ Array<Day>
Returns List of days of the month.
16 17 18 |
# File 'lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/daily_retention_format.rb', line 16 def days_of_the_month @days_of_the_month end |
Class Method Details
.mapper ⇒ Object
Mapper for DailyRetentionFormat class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/daily_retention_format.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DailyRetentionFormat', type: { name: 'Composite', class_name: 'DailyRetentionFormat', model_properties: { days_of_the_month: { client_side_validation: true, required: false, serialized_name: 'daysOfTheMonth', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DayElementType', type: { name: 'Composite', class_name: 'Day' } } } } } } } end |