# 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::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10 module Models # # Replication protected item custom data details. # class ProtectableItemProperties include MsRestAzure # @return [String] The name. attr_accessor :friendly_name # @return [String] The protection status. attr_accessor :protection_status # @return [String] The ARM resource of protected items. attr_accessor :replication_protected_item_id # @return [String] The recovery provider ARM Id. attr_accessor :recovery_services_provider_id # @return [Array] The Current protection readiness errors. attr_accessor :protection_readiness_errors # @return [Array] The list of replication providers supported for # the protectable item. attr_accessor :supported_replication_providers # @return [ConfigurationSettings] The Replication provider custom # settings. attr_accessor :custom_details # # Mapper for ProtectableItemProperties class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ProtectableItemProperties', type: { name: 'Composite', class_name: 'ProtectableItemProperties', model_properties: { friendly_name: { client_side_validation: true, required: false, serialized_name: 'friendlyName', type: { name: 'String' } }, protection_status: { client_side_validation: true, required: false, serialized_name: 'protectionStatus', type: { name: 'String' } }, replication_protected_item_id: { client_side_validation: true, required: false, serialized_name: 'replicationProtectedItemId', type: { name: 'String' } }, recovery_services_provider_id: { client_side_validation: true, required: false, serialized_name: 'recoveryServicesProviderId', type: { name: 'String' } }, protection_readiness_errors: { client_side_validation: true, required: false, serialized_name: 'protectionReadinessErrors', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, supported_replication_providers: { client_side_validation: true, required: false, serialized_name: 'supportedReplicationProviders', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, custom_details: { client_side_validation: true, required: false, serialized_name: 'customDetails', type: { name: 'Composite', polymorphic_discriminator: 'instanceType', uber_parent: 'ConfigurationSettings', class_name: 'ConfigurationSettings' } } } } } end end end end