# 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 # # This class represents the details for a failover job. # class FailoverJobDetails < JobDetails include MsRestAzure def initialize @instanceType = "FailoverJobDetails" end attr_accessor :instanceType # @return [Array] The test VM # details. attr_accessor :protected_item_details # # Mapper for FailoverJobDetails class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'FailoverJobDetails', type: { name: 'Composite', class_name: 'FailoverJobDetails', model_properties: { affected_object_details: { required: false, serialized_name: 'affectedObjectDetails', type: { name: 'Dictionary', value: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, instanceType: { required: true, serialized_name: 'instanceType', type: { name: 'String' } }, protected_item_details: { required: false, serialized_name: 'protectedItemDetails', type: { name: 'Sequence', element: { required: false, serialized_name: 'FailoverReplicationProtectedItemDetailsElementType', type: { name: 'Composite', class_name: 'FailoverReplicationProtectedItemDetails' } } } } } } } end end end end