Class: Azure::RecoveryServicesBackup::Mgmt::V2016_06_01::Models::AzureIaaSVMProtectedItemExtendedInfo

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/models/azure_iaa_svmprotected_item_extended_info.rb

Overview

Additional information for the Azure VM (also known as IaaS VM)-specific backup item.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#oldest_recovery_pointDateTime

item.

Returns:

  • (DateTime)

    The oldest backup copy available for this backup



22
23
24
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/models/azure_iaa_svmprotected_item_extended_info.rb', line 22

def oldest_recovery_point
  @oldest_recovery_point
end

#policy_inconsistentBoolean

backup item is inconsistent.

Returns:

  • (Boolean)

    Specifies if the backup policy associated with the



30
31
32
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/models/azure_iaa_svmprotected_item_extended_info.rb', line 30

def policy_inconsistent
  @policy_inconsistent
end

#recovery_point_countInteger

item.

Returns:

  • (Integer)

    The number of backup copies available for this backup



26
27
28
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/models/azure_iaa_svmprotected_item_extended_info.rb', line 26

def recovery_point_count
  @recovery_point_count
end

Class Method Details

.mapperObject

Mapper for AzureIaaSVMProtectedItemExtendedInfo class as Ruby Hash. This will be used for serialization/deserialization.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/models/azure_iaa_svmprotected_item_extended_info.rb', line 37

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AzureIaaSVMProtectedItemExtendedInfo',
    type: {
      name: 'Composite',
      class_name: 'AzureIaaSVMProtectedItemExtendedInfo',
      model_properties: {
        oldest_recovery_point: {
          client_side_validation: true,
          required: false,
          serialized_name: 'oldestRecoveryPoint',
          type: {
            name: 'DateTime'
          }
        },
        recovery_point_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'recoveryPointCount',
          type: {
            name: 'Number'
          }
        },
        policy_inconsistent: {
          client_side_validation: true,
          required: false,
          serialized_name: 'policyInconsistent',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end