# 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 # # Protection profile custom data details. # class ProtectionContainerProperties include MsRestAzure # @return [String] Fabric friendly name. attr_accessor :fabric_friendly_name # @return [String] The name. attr_accessor :friendly_name # @return [String] The fabric type. attr_accessor :fabric_type # @return [Integer] Number of protected PEs attr_accessor :protected_item_count # @return [String] The pairing status of this cloud. attr_accessor :pairing_status # @return [String] The role of this cloud. attr_accessor :role # @return [ProtectionContainerFabricSpecificDetails] Fabric specific # details. attr_accessor :fabric_specific_details # # Mapper for ProtectionContainerProperties class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'ProtectionContainerProperties', type: { name: 'Composite', class_name: 'ProtectionContainerProperties', model_properties: { fabric_friendly_name: { required: false, serialized_name: 'fabricFriendlyName', type: { name: 'String' } }, friendly_name: { required: false, serialized_name: 'friendlyName', type: { name: 'String' } }, fabric_type: { required: false, serialized_name: 'fabricType', type: { name: 'String' } }, protected_item_count: { required: false, serialized_name: 'protectedItemCount', type: { name: 'Number' } }, pairing_status: { required: false, serialized_name: 'pairingStatus', type: { name: 'String' } }, role: { required: false, serialized_name: 'role', type: { name: 'String' } }, fabric_specific_details: { required: false, serialized_name: 'fabricSpecificDetails', type: { name: 'Composite', class_name: 'ProtectionContainerFabricSpecificDetails' } } } } } end end end end